urls.py
changeset 10 e6aac19d8a25
parent 0 d2b78840bfcb
child 16 91518c60131d
equal deleted inserted replaced
9:47f72774489e 10:e6aac19d8a25
     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 
       
     7 from sage_days.sdi.views import register
       
     8 from sage_days.settings import APACHE_URL_PREFIX as aup
     6 
     9 
     7 urlpatterns = patterns('',
    10 urlpatterns = patterns('',
     8     # Example:
    11     # Example:
     9     # (r'^sage_days/', include('sage_days.foo.urls')),
    12     # (r'^sage_days/', include('sage_days.foo.urls')),
    10 
    13 
    12     # to INSTALLED_APPS to enable admin documentation:
    15     # to INSTALLED_APPS to enable admin documentation:
    13     # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
    16     # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
    14 
    17 
    15     # Uncomment the next line to enable the admin:
    18     # Uncomment the next line to enable the admin:
    16     # (r'^admin/', include(admin.site.urls)),
    19     # (r'^admin/', include(admin.site.urls)),
       
    20 
       
    21     (r'^registration/', include('sage_days.sdi.site.urls')),
    17 )
    22 )