diff options
author | hardythe1 | 2013-12-11 00:58:37 +0530 |
---|---|---|
committer | hardythe1 | 2013-12-11 00:58:37 +0530 |
commit | 311e7c6fd6d8cc3a9fe023e0d996e46ef3033d79 (patch) | |
tree | 399f9506911ee6ff05421409e8e127bf5b3aafd6 /scipy | |
parent | db2047b5fa31588675002c24e942eefb6b7575b3 (diff) | |
download | SciPy2013-311e7c6fd6d8cc3a9fe023e0d996e46ef3033d79.tar.gz SciPy2013-311e7c6fd6d8cc3a9fe023e0d996e46ef3033d79.tar.bz2 SciPy2013-311e7c6fd6d8cc3a9fe023e0d996e46ef3033d79.zip |
Closing registration & CFP
Diffstat (limited to 'scipy')
-rw-r--r-- | scipy/urls.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/scipy/urls.py b/scipy/urls.py index 6c3ea05..29a5891 100644 --- a/scipy/urls.py +++ b/scipy/urls.py @@ -1,6 +1,7 @@ from django.conf.urls import patterns, include, url from django.contrib import admin +from website.views import * admin.autodiscover() urlpatterns = patterns('', @@ -10,9 +11,9 @@ urlpatterns = patterns('', # Accounts urls url(r'accounts/login/$', 'scipy.views.user_login'), url(r'accounts/logout/$', 'scipy.views.user_logout'), - url(r'accounts/register/$', 'scipy.views.user_register'), + url(r'accounts/register/$', 'website.views.call_for_papers_page', name='call-for-proposals'), url(r'accounts/profile/$', 'scipy.views.user_profile'), - url(r'accounts/upload-document/$', 'scipy.views.upload_document', name='upload-document'), + url(r'accounts/upload-document/$', 'website.views.call_for_papers_page', name='call-for-proposals'), # Reusing the admin password reset url(r'accounts/password-change/$', 'django.contrib.auth.views.password_change', name='password_change'), url(r'accounts/password-change/done/$', 'django.contrib.auth.views.password_change_done', name='password_change_done'), |