urls.py
author nishanth
Fri, 23 Apr 2010 16:36:40 +0530
changeset 99 cc2ed87ee896
parent 95 f5ae0bcb044e
permissions -rwxr-xr-x
resolved a bug
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:
95
f5ae0bcb044e activated admin urls for testing.
nishanth
parents: 92
diff changeset
    16
    (r'^administration/', include(admin.site.urls)),
2
c11afa8623f7 incorporated gen_key .
nishanth
parents: 0
diff changeset
    17
79
26c22028006d updated main urls.py
nishanth
parents: 74
diff changeset
    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
26c22028006d updated main urls.py
nishanth
parents: 74
diff changeset
    20
    (r'^feedback/', include('ws_app.feedback.site.urls')),
0
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    21
)