author | nishanth |
Tue, 29 Jun 2010 16:12:29 +0530 | |
changeset 103 | ee9261c5ba18 |
parent 95 | f5ae0bcb044e |
permissions | -rwxr-xr-x |
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 |
||
7 |
urlpatterns = patterns('', |
|
8 |
# Example: |
|
62
b7e47cc39342
renamed the project to ws_app and modified imports accordingly .
nishanth
parents:
11
diff
changeset
|
9 |
# (r'^ws_app/', include('ws_app.foo.urls')), |
0 | 10 |
|
11 |
# Uncomment the admin/doc line below and add 'django.contrib.admindocs' |
|
12 |
# to INSTALLED_APPS to enable admin documentation: |
|
13 |
# (r'^admin/doc/', include('django.contrib.admindocs.urls')), |
|
14 |
||
15 |
# Uncomment the next line to enable the admin: |
|
95 | 16 |
(r'^administration/', include(admin.site.urls)), |
2 | 17 |
|
79 | 18 |
(r'^registration/', include('ws_app.reg.site.urls')), |
74
c47a6c63eaa7
changed the urls to map to /workshop/registration instead of /reg .
nishanth
parents:
63
diff
changeset
|
19 |
#(r'^workshop/quiz/', include('ws_app.quiz.site.urls')), |
79 | 20 |
(r'^feedback/', include('ws_app.feedback.site.urls')), |
0 | 21 |
) |