urls.py
author nishanth
Thu, 15 Apr 2010 19:00:23 +0530
changeset 56 3858a9d0f376
parent 11 334550460bd7
child 62 b7e47cc39342
permissions -rw-r--r--
removed the field feedback_submitted_by from event model and added the code to create feedlog record when a new feedback is taken.

from django.conf.urls.defaults import *

# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
    # Example:
    # (r'^workshop/', include('workshop.foo.urls')),

    # Uncomment the admin/doc line below and add 'django.contrib.admindocs' 
    # to INSTALLED_APPS to enable admin documentation:
    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),

    # Uncomment the next line to enable the admin:
    (r'^reg_admin/', include(admin.site.urls)),

    (r'^reg/', include('workshop.reg.site.urls')),
    #(r'^quiz/', include('workshop.quiz.site.urls')),
    (r'^feedback/', include('workshop.feedback.site.urls')),
)