urls.py
changeset 16 91518c60131d
parent 10 e6aac19d8a25
child 26 212fcba4459e
child 203 3d0970ef6feb
equal deleted inserted replaced
15:1c2d2e702aee 16:91518c60131d
     1 from django.conf.urls.defaults import *
     1 from django.conf.urls.defaults import *
     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
     7 from sage_days.sdi.views import register
     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('',
    14     # Uncomment the admin/doc line below and add 'django.contrib.admindocs' 
    14     # Uncomment the admin/doc line below and add 'django.contrib.admindocs' 
    15     # to INSTALLED_APPS to enable admin documentation:
    15     # to INSTALLED_APPS to enable admin documentation:
    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'^admin/', include(admin.site.urls)),
    19     (r'^administration/', include(admin.site.urls)),
    20 
    20 
    21     (r'^registration/', include('sage_days.sdi.site.urls')),
    21     (r'^registration/', include('sage_days.sdi.site.urls')),
    22 )
    22 )