urls.py
author Nishanth <nishanth@fossee.in>
Sun, 24 Jan 2010 13:47:05 +0530
changeset 0 a87d642f1ba5
child 1 7818992cbf83
permissions -rw-r--r--
Initial commit that has bare minimum django project files.

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