urls.py
branchanoop
changeset 31 ec540dfbfe78
parent 26 212fcba4459e
child 40 aa5abe1664ce
equal deleted inserted replaced
30:11f828503666 31:ec540dfbfe78
     2 
     2 
     3 # Uncomment the next two lines to enable the admin:
     3 # Uncomment the next two lines to enable the admin:
     4 from django.contrib import admin
     4 from django.contrib import admin
     5 admin.autodiscover()
     5 admin.autodiscover()
     6 
     6 
     7 from sage_days.sdi.views import register, homepage
     7 from sage_days.sdi.views import register, homepage, schedule, organizers, venue, contact, about
     8 from sage_days.settings import APACHE_URL_PREFIX as aup
     8 from sage_days.settings import APACHE_URL_PREFIX as aup
     9 
     9 
    10 urlpatterns = patterns('',
    10 urlpatterns = patterns('',
    11     # Example:
    11     # Example:
    12     # (r'^sage_days/', include('sage_days.foo.urls')),
    12     # (r'^sage_days/', include('sage_days.foo.urls')),
    16     # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
    16     # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
    17 
    17 
    18     # Uncomment the next line to enable the admin:
    18     # Uncomment the next line to enable the admin:
    19     (r'^administration/', include(admin.site.urls)),
    19     (r'^administration/', include(admin.site.urls)),
    20     (r'^$',homepage),
    20     (r'^$',homepage),
       
    21     (r'^schedule/',schedule),
       
    22     (r'^organizers/',organizers),
       
    23     (r'^venue/',venue),
       
    24     (r'^contact/',contact),
       
    25     (r'^about/',about),
    21     (r'^registration/', include('sage_days.sdi.site.urls')),
    26     (r'^registration/', include('sage_days.sdi.site.urls')),
    22 )
    27 )