urls.py
author nishanth
Thu, 15 Apr 2010 23:40:14 +0530
changeset 60 d8cd7e946cde
parent 11 334550460bd7
child 62 b7e47cc39342
permissions -rwxr-xr-x
added feedback.html on main repo .

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')),
)