evorepo/devel/urls.py
Dan McGee 1dc867587d Add Admin log overview page
This puts the admin log functionality to a bit more use and allows
seeing the last 100 overall entries. You can also drill down to see
actions on a per-user basis.

Signed-off-by: Dan McGee <dan@archlinux.org>
2011-03-10 10:49:11 -06:00

13 lines
342 B
Python

from django.conf.urls.defaults import patterns
urlpatterns = patterns('devel.views',
(r'^$', 'index'),
(r'^clock/$', 'clock'),
(r'^profile/$', 'change_profile'),
(r'^newuser/$', 'new_user_form'),
(r'^admin_log/(?P<username>.*)/$','admin_log'),
(r'^admin_log/$','admin_log'),
)
# vim: set ts=4 sw=4 et: