urls.py
author nishanth
Fri, 23 Apr 2010 16:35:42 +0530
changeset 98 1af134a1e53d
parent 95 f5ae0bcb044e
permissions -rwxr-xr-x
now an email will be sent to user after he resets his password.

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'^ws_app/', include('ws_app.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'^administration/', include(admin.site.urls)),

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