author | nishanth |
Sat, 29 May 2010 10:13:58 +0530 | |
changeset 10 | e6aac19d8a25 |
parent 0 | d2b78840bfcb |
child 16 | 91518c60131d |
permissions | -rw-r--r-- |
0 | 1 |
from django.conf.urls.defaults import * |
2 |
||
3 |
# Uncomment the next two lines to enable the admin: |
|
4 |
# from django.contrib import admin |
|
5 |
# admin.autodiscover() |
|
6 |
||
10
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
0
diff
changeset
|
7 |
from sage_days.sdi.views import register |
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
0
diff
changeset
|
8 |
from sage_days.settings import APACHE_URL_PREFIX as aup |
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
0
diff
changeset
|
9 |
|
0 | 10 |
urlpatterns = patterns('', |
11 |
# Example: |
|
12 |
# (r'^sage_days/', include('sage_days.foo.urls')), |
|
13 |
||
14 |
# Uncomment the admin/doc line below and add 'django.contrib.admindocs' |
|
15 |
# to INSTALLED_APPS to enable admin documentation: |
|
16 |
# (r'^admin/doc/', include('django.contrib.admindocs.urls')), |
|
17 |
||
18 |
# Uncomment the next line to enable the admin: |
|
19 |
# (r'^admin/', include(admin.site.urls)), |
|
10
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
0
diff
changeset
|
20 |
|
e6aac19d8a25
created site.urls in sdi and mapped urls.py accordingly
nishanth
parents:
0
diff
changeset
|
21 |
(r'^registration/', include('sage_days.sdi.site.urls')), |
0 | 22 |
) |