author | nishanth |
Sat, 29 May 2010 15:59:50 +0530 | |
changeset 22 | 1df4b0e0d45c |
parent 16 | 91518c60131d |
child 26 | 212fcba4459e |
child 203 | 3d0970ef6feb |
permissions | -rw-r--r-- |
0 | 1 |
from django.conf.urls.defaults import * |
2 |
||
3 |
# Uncomment the next two lines to enable the admin: |
|
16 | 4 |
from django.contrib import admin |
5 |
admin.autodiscover() |
|
0 | 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: |
|
16 | 19 |
(r'^administration/', 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 |
) |