diff options
author | Dan McGee <dan@archlinux.org> | 2013-04-21 20:29:17 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2013-04-21 20:29:17 -0500 |
commit | 66412aa1037befef0b579c7df73656dc3b8b9804 (patch) | |
tree | d47fd7081159a54acb870a6eecc7b605022d5121 /devel/urls.py | |
parent | ecf57207c0a5f90d51b6be551158ce7a0f82c9cb (diff) |
Move stats portion of developer dashboard to separate view
This stuff is all below the fold when the page first loads, and adds a
good amount of loading time to the developer dashboard. Split it out,
where it will be wired back and hooked up via an AJAX insertion in a
future commit. Both parts work standalone as is in this commit.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'devel/urls.py')
-rw-r--r-- | devel/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/devel/urls.py b/devel/urls.py index 31afc86b..472c6456 100644 --- a/devel/urls.py +++ b/devel/urls.py @@ -5,6 +5,7 @@ urlpatterns = patterns('devel.views', (r'^admin_log/(?P<username>.*)/$','admin_log'), (r'^clock/$', 'clock', {}, 'devel-clocks'), (r'^$', 'index', {}, 'devel-index'), + (r'^stats/$', 'stats', {}, 'devel-stats'), (r'^newuser/$', 'new_user_form'), (r'^profile/$', 'change_profile'), (r'^reports/(?P<report_name>.*)/(?P<username>.*)/$', 'report'), |