summaryrefslogtreecommitdiffstats
path: root/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'urls.py')
-rw-r--r--urls.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/urls.py b/urls.py
index c6f5685..ac03bc8 100644
--- a/urls.py
+++ b/urls.py
@@ -33,7 +33,9 @@ urlpatterns = patterns('',
url(r'^statistics/?$', stats, name="stats"),
- (r'^survey/?$', surveyindex),
+ url(r'^calendar/(?P<year>\d\d\d\d)?$', calendar, name="calendar"),
+
+ url(r'^survey/?$', surveyindex, name="survey"),
(r'^survey/(?P<year>\d\d\d\d)\#(?P<wallet_number>\d*)$', survey),
(r'^admin/doc/?', include('django.contrib.admindocs.urls')),