Addition of content reporting

New app called "moderation" which handles the reporting, and in the future, management of incorrect records in the database.
This commit is contained in:
2013-04-06 01:07:33 +01:00
parent d5584246d2
commit b8d4b4f82d
19 changed files with 612 additions and 2 deletions

5
app/moderation/admin.py Normal file
View File

@@ -0,0 +1,5 @@
from django.contrib import admin
from moderation.models import FlagType, FlaggedObject
admin.site.register(FlagType, admin.ModelAdmin)
admin.site.register(FlaggedObject, admin.ModelAdmin)