urls.py
author nishanth
Fri, 16 Apr 2010 11:14:31 +0530
changeset 62 b7e47cc39342
parent 11 334550460bd7
child 63 d960c570ce63
permissions -rwxr-xr-x
renamed the project to ws_app and modified imports accordingly .
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
     1
from django.conf.urls.defaults import *
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
     2
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
     3
# Uncomment the next two lines to enable the admin:
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
     4
from django.contrib import admin
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
     5
admin.autodiscover()
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
     6
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
     7
urlpatterns = patterns('',
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
     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
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    10
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    11
    # Uncomment the admin/doc line below and add 'django.contrib.admindocs' 
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    12
    # to INSTALLED_APPS to enable admin documentation:
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    13
    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    14
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    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
c11afa8623f7 incorporated gen_key .
nishanth
parents: 0
diff changeset
    17
62
b7e47cc39342 renamed the project to ws_app and modified imports accordingly .
nishanth
parents: 11
diff changeset
    18
    (r'^reg/', include('ws_reg.reg.site.urls')),
b7e47cc39342 renamed the project to ws_app and modified imports accordingly .
nishanth
parents: 11
diff changeset
    19
    #(r'^quiz/', include('ws_reg.quiz.site.urls')),
b7e47cc39342 renamed the project to ws_app and modified imports accordingly .
nishanth
parents: 11
diff changeset
    20
    (r'^feedback/', include('ws_reg.feedback.site.urls')),
0
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    21
)