diff options
author | Kadambari Devarajan | 2010-10-29 17:03:15 +0530 |
---|---|---|
committer | Kadambari Devarajan | 2010-10-29 17:03:15 +0530 |
commit | 56e15da3647ec3feeb4aec2868aa4b72721d1242 (patch) | |
tree | 9087a48470c49d17fe6431087c157a0208e16e1c /project/urls.py | |
parent | 0f641fb7f3b8e84da388cd348bc5531b9aea633f (diff) | |
download | scipycon-56e15da3647ec3feeb4aec2868aa4b72721d1242.tar.gz scipycon-56e15da3647ec3feeb4aec2868aa4b72721d1242.tar.bz2 scipycon-56e15da3647ec3feeb4aec2868aa4b72721d1242.zip |
Added the registration fee page.
Diffstat (limited to 'project/urls.py')
-rw-r--r-- | project/urls.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/project/urls.py b/project/urls.py index d98b84c..2ea7a1d 100644 --- a/project/urls.py +++ b/project/urls.py @@ -116,6 +116,10 @@ urlpatterns += patterns('', url(r'^%s/publicity/$' % (SCOPE_ARG_PATTERN), direct_to_template, {"template": "about/publicity.html"}, name='scipycon_publicity'), + url(r'^%s/about/fees/$' % (SCOPE_ARG_PATTERN), + direct_to_template, {"template": "about/fees.html"}, + name='scipycon_fees'), + ) # Password reset |