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

6
app/moderation/urls.py Normal file
View File

@@ -0,0 +1,6 @@
from django.conf.urls import patterns, url
from moderation.views import FlagObjectView
urlpatterns = patterns('',
url(r'^flag/$', FlagObjectView.as_view(), name='moderation_flagobject'),
)