urls.py
author nishanth
Mon, 12 Apr 2010 11:23:27 +0530
changeset 11 334550460bd7
parent 5 37e4027fba48
child 62 b7e47cc39342
permissions -rw-r--r--
added the view event functionality and submitting feedback according to the status .
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:
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
     9
    # (r'^workshop/', include('workshop.foo.urls')),
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
c11afa8623f7 incorporated gen_key .
nishanth
parents: 0
diff changeset
    18
    (r'^reg/', include('workshop.reg.site.urls')),
4
ededea9ad08b login and logout works .
nishanth
parents: 2
diff changeset
    19
    #(r'^quiz/', include('workshop.quiz.site.urls')),
5
37e4027fba48 submit and list feedback done
nishanth
parents: 4
diff changeset
    20
    (r'^feedback/', include('workshop.feedback.site.urls')),
0
30a0f9e20fd4 initial commit
nishanth
parents:
diff changeset
    21
)