diff options
author | hardythe1 | 2013-10-09 15:27:44 +0530 |
---|---|---|
committer | hardythe1 | 2013-10-09 15:27:44 +0530 |
commit | 3f0edc9409731e43349ff83403f402315956a04f (patch) | |
tree | 0c2645947ce48929cb2319554f23e5e5288dce12 /conference/urls.py | |
parent | 1ce3a401fc6658e76ee9b0234094b116dddf14a0 (diff) | |
download | SciPy2012-3f0edc9409731e43349ff83403f402315956a04f.tar.gz SciPy2012-3f0edc9409731e43349ff83403f402315956a04f.tar.bz2 SciPy2012-3f0edc9409731e43349ff83403f402315956a04f.zip |
resolving url issue
Diffstat (limited to 'conference/urls.py')
-rw-r--r-- | conference/urls.py | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/conference/urls.py b/conference/urls.py new file mode 100644 index 0000000..228cec9 --- /dev/null +++ b/conference/urls.py @@ -0,0 +1,23 @@ +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'^$', home, name="home"), + url(r'^keynote/', keynote, name="keynote"), + url(r'^tutorials/', tutorials, name="tutorials"), + url(r'^talks/', talks, name="talks"), + url(r'^sponsors/', sponsors, name="sponsors"), + url(r'^details/(?P<talktutorial_id>\d+)/$', details, name="details"), +) |