Add page with list of all pending moderation requests, and link it

(somewhat hackishly) onto the header of the administration pages.
This commit is contained in:
Magnus Hagander
2010-03-21 18:25:00 +01:00
parent c80daa4b4e
commit 4ca5d45536
4 changed files with 60 additions and 0 deletions

View File

@ -75,6 +75,8 @@ urlpatterns = patterns('',
(r'^about/event\.(\d+)$', 'pgweb.legacyurl.views.event'),
(r'^community/signup', 'pgweb.legacyurl.views.signup'),
# Override some URLs in admin, to provide our own pages
(r'^admin/pending/$', 'pgweb.core.views.admin_pending'),
# Uncomment the next line to enable the admin:
(r'^admin/(.*)', admin.site.root),