From 3f0edc9409731e43349ff83403f402315956a04f Mon Sep 17 00:00:00 2001 From: hardythe1 Date: Wed, 9 Oct 2013 15:27:44 +0530 Subject: resolving url issue --- conference/urls.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 conference/urls.py (limited to 'conference/urls.py') 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\d+)/$', details, name="details"), +) -- cgit