summaryrefslogtreecommitdiffstats
path: root/devel/urls.py
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2013-04-22 03:29:17 +0200
committerDan McGee <dan@archlinux.org>2013-04-22 03:29:17 +0200
commit66412aa1037befef0b579c7df73656dc3b8b9804 (patch)
treed47fd7081159a54acb870a6eecc7b605022d5121 /devel/urls.py
parentecf57207c0a5f90d51b6be551158ce7a0f82c9cb (diff)
downloadarchweb-66412aa1037befef0b579c7df73656dc3b8b9804.tar.gz
archweb-66412aa1037befef0b579c7df73656dc3b8b9804.tar.xz
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.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/devel/urls.py b/devel/urls.py
index 31afc86..472c645 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'),