diff options
author | Anoop Jacob Thomas | 2010-10-29 19:59:03 +0530 |
---|---|---|
committer | Anoop Jacob Thomas | 2010-10-29 19:59:03 +0530 |
commit | 442c0d2f8b7f99cfdab06ea4ae5583e5d9eca409 (patch) | |
tree | a9ba5cc0dd66fea26158d2a80a8dcc56b483d9d5 /project/urls.py | |
parent | 9ab88df8caae0aa590b6eb52a102fc2475e54da2 (diff) | |
download | scipycon-442c0d2f8b7f99cfdab06ea4ae5583e5d9eca409.tar.gz scipycon-442c0d2f8b7f99cfdab06ea4ae5583e5d9eca409.tar.bz2 scipycon-442c0d2f8b7f99cfdab06ea4ae5583e5d9eca409.zip |
added organizers page.
Diffstat (limited to 'project/urls.py')
-rw-r--r-- | project/urls.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/project/urls.py b/project/urls.py index 2ea7a1d..599ec56 100644 --- a/project/urls.py +++ b/project/urls.py @@ -119,6 +119,9 @@ urlpatterns += patterns('', url(r'^%s/about/fees/$' % (SCOPE_ARG_PATTERN), direct_to_template, {"template": "about/fees.html"}, name='scipycon_fees'), + url(r'^%s/organizers/$' % (SCOPE_ARG_PATTERN), + direct_to_template, {"template": "about/organizers.html"}, + name='scipycon_organizers'), ) |