diff options
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 853a5f8..2373b72 100644 --- a/project/urls.py +++ b/project/urls.py @@ -95,6 +95,9 @@ urlpatterns += patterns('', url(r'^%s/about/reaching/$' % (SCOPE_ARG_PATTERN), direct_to_template, {"template": "about/reaching.html"}, name='scipycon_reaching'), + url(r'^%s/about/city/$' % (SCOPE_ARG_PATTERN), + direct_to_template, {"template": "about/city.html"}, + name='scipycon_city'), url(r'^%s/talks-cfp/$' % (SCOPE_ARG_PATTERN), direct_to_template, {"template": "talk/talks-cfp.html"}, name='scipycon_talks_cfp'), |