diff options
author | hardythe1 | 2013-10-09 15:00:43 +0530 |
---|---|---|
committer | hardythe1 | 2013-10-09 15:00:43 +0530 |
commit | c02e32aa54933e386819cf3928ef02963c32b278 (patch) | |
tree | 6dfff16012d55a53fe9f33899e797a07e61fa030 /scipy2012/urls.py | |
download | SciPy2012-c02e32aa54933e386819cf3928ef02963c32b278.tar.gz SciPy2012-c02e32aa54933e386819cf3928ef02963c32b278.tar.bz2 SciPy2012-c02e32aa54933e386819cf3928ef02963c32b278.zip |
intializing repo with all files
Diffstat (limited to 'scipy2012/urls.py')
-rwxr-xr-x | scipy2012/urls.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/scipy2012/urls.py b/scipy2012/urls.py new file mode 100755 index 0000000..8ec55eb --- /dev/null +++ b/scipy2012/urls.py @@ -0,0 +1,24 @@ +from django.conf.urls import patterns, include, url +from conference.views import * + +# Uncomment the next two lines to enable the admin: +from django.contrib import admin +admin.autodiscover() + +urlpatterns = patterns('', + # Examples: + # url(r'^$', 'scipy2012.views.home', name='home'), + # url(r'^scipy2012/', include('scipy2012.foo.urls')), + + # Uncomment the admin/doc line below to enable admin documentation: + # url(r'^admin/doc/', include('django.contrib.admindocs.urls')), + + # Uncomment the next line to enable the admin: + url(r'^admin/', include(admin.site.urls)), + url(r'^$', home), + url(r'^keynote/', keynote), + url(r'^tutorials/', tutorials), + url(r'^talks/', talks), + url(r'^sponsors/', sponsors), + url(r'^details/(\d+)/$', details), +) |