diff options
author | Dan McGee <dan@archlinux.org> | 2011-01-04 08:45:15 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-03-10 10:49:11 -0600 |
commit | 1dc867587da6b66ca575eb26f4f65cb9d67ffdb3 (patch) | |
tree | ce95e80d3e51e26f8ffaa6b522c3a18f13993bd4 /devel/urls.py | |
parent | 3e73b5d7d291b20858b18ba7492b7f92501e01c7 (diff) |
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>
Diffstat (limited to 'devel/urls.py')
-rw-r--r-- | devel/urls.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/devel/urls.py b/devel/urls.py index bcf9c071..41be2b31 100644 --- a/devel/urls.py +++ b/devel/urls.py @@ -5,6 +5,8 @@ urlpatterns = patterns('devel.views', (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: |