urls.py
author Nishanth Amuluru <nishanth@fossee.in>
Thu, 06 Jan 2011 19:06:26 +0530
changeset 247 2ba2ef66a482
parent 238 8d8a3f5af24f
child 256 718b7b0309f1
permissions -rwxr-xr-x
added forms

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'^pytask/', include('pytask.foo.urls')),

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

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