diff options
author | Dan McGee <dan@archlinux.org> | 2011-01-08 11:47:11 -0600 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-01-08 11:47:11 -0600 |
commit | c04d4abc88cdf0891bff2b1ce6d1d746c5b9b3c9 (patch) | |
tree | 210c401bf07a8bbd79d9b49e1f034bc04a144fb3 /devel/urls.py | |
parent | 9a1971e24fe15ccdb74f3a8a59d735504f2797be (diff) |
Add developer world clocks page
This should make it easier for everyone to figure out whether someone is
awake, sleeping, and all that fun stuff. It does require everyone to update
their profile and fill in the field, but that shouldn't be too hard of a
task.
Don't suggest jokes to me Saturday morning on IRC unless you really want to
see them implemented. Thanks, Pierre!
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 23dd2d9f..0a050a92 100644 --- a/devel/urls.py +++ b/devel/urls.py @@ -2,6 +2,7 @@ from django.conf.urls.defaults import patterns urlpatterns = patterns('devel.views', (r'^$', 'index'), + (r'^clock/$', 'clock'), (r'^notify/$', 'change_notify'), (r'^profile/$', 'change_profile'), (r'^newuser/$', 'new_user_form'), |