author | nishanth |
Thu, 15 Apr 2010 18:23:21 +0530 | |
changeset 53 | 0a4b2c49f718 |
parent 11 | 334550460bd7 |
child 62 | b7e47cc39342 |
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 |
||
7 |
urlpatterns = patterns('', |
|
8 |
# Example: |
|
9 |
# (r'^workshop/', include('workshop.foo.urls')), |
|
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 |
|
18 |
(r'^reg/', include('workshop.reg.site.urls')), |
|
4 | 19 |
#(r'^quiz/', include('workshop.quiz.site.urls')), |
5 | 20 |
(r'^feedback/', include('workshop.feedback.site.urls')), |
0 | 21 |
) |