evorepo/devel/urls.py
Dan McGee c04d4abc88 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>
2011-01-08 11:47:11 -06:00

12 lines
294 B
Python

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'),
)
# vim: set ts=4 sw=4 et: