author | nishanth |
Fri, 16 Apr 2010 11:23:39 +0530 | |
changeset 63 | d960c570ce63 |
parent 62 | b7e47cc39342 |
child 74 | c47a6c63eaa7 |
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: |
|
11
334550460bd7
added the view event functionality and submitting feedback according to the status .
nishanth
parents:
5
diff
changeset
|
16 |
(r'^reg_admin/', include(admin.site.urls)), |
2 | 17 |
|
63 | 18 |
(r'^reg/', include('ws_app.reg.site.urls')), |
19 |
#(r'^quiz/', include('ws_app.quiz.site.urls')), |
|
20 |
(r'^feedback/', include('ws_app.feedback.site.urls')), |
|
0 | 21 |
) |