diff options
author | Madhusudan.C.S | 2009-11-12 13:10:27 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2009-11-12 13:10:27 +0530 |
commit | d26d9bab885e2e55b2bd64de4ec6f041e33513d0 (patch) | |
tree | 2df391ab28142e2364590d461892cb9c317084d0 /project/urls.py | |
parent | 83a81f8e7634635fdedc7f4fe433e23a68554c35 (diff) | |
download | scipycon-d26d9bab885e2e55b2bd64de4ec6f041e33513d0.tar.gz scipycon-d26d9bab885e2e55b2bd64de4ec6f041e33513d0.tar.bz2 scipycon-d26d9bab885e2e55b2bd64de4ec6f041e33513d0.zip |
Added speakers section.
Diffstat (limited to 'project/urls.py')
-rw-r--r-- | project/urls.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/project/urls.py b/project/urls.py index 5994d33..cc3714b 100644 --- a/project/urls.py +++ b/project/urls.py @@ -70,10 +70,13 @@ urlpatterns += patterns('', name='reaching'), url(r'^talks-cfp/$', direct_to_template, {"template": "talk/talks-cfp.html"}, - name='reaching'), + name='talks-cfp'), url(r'^talks-cfp/schedule/$', direct_to_template, {"template": "talk/schedule.html"}, - name='reaching'), + name='schedule'), + url(r'^talks-cfp/speakers/$', + direct_to_template, {"template": "talk/speakers.html"}, + name='speakers'), (r'^accounts/', include('registration.urls')), ) |