diff options
author | Madhusudan.C.S | 2009-12-14 01:32:05 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2009-12-14 01:32:05 +0530 |
commit | b99df51860dce66d62b0b905baf8c108f31b2b26 (patch) | |
tree | 00e148f370dda9e5f9580cf603a4016b5db2ef06 /project/urls.py | |
parent | 96bcb0ec4254500dd89fee8b7cf1d975295447da (diff) | |
download | scipycon-b99df51860dce66d62b0b905baf8c108f31b2b26.tar.gz scipycon-b99df51860dce66d62b0b905baf8c108f31b2b26.tar.bz2 scipycon-b99df51860dce66d62b0b905baf8c108f31b2b26.zip |
Added tutorial schedule.
Diffstat (limited to 'project/urls.py')
-rw-r--r-- | project/urls.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/project/urls.py b/project/urls.py index b1e90fc..a219835 100644 --- a/project/urls.py +++ b/project/urls.py @@ -74,9 +74,12 @@ urlpatterns += patterns('', url(r'^talks-cfp/schedule/$', direct_to_template, {"template": "talk/schedule.html"}, name='schedule'), + url(r'^talks-cfp/tutorial/$', + direct_to_template, {"template": "talk/tutorial-schedule.html"}, + name='tutorial-schedule'), url(r'^talks-cfp/sprint/$', direct_to_template, {"template": "talk/sprint-schedule.html"}, - name='schedule'), + name='sprint-schedule'), url(r'^talks-cfp/speakers/$', direct_to_template, {"template": "talk/speakers.html"}, name='speakers'), |