urls.py
author nishanth
Mon, 19 Apr 2010 21:22:36 +0530
changeset 0 33750f11199f
child 5 9a671f3eb24c
permissions -rw-r--r--
initial commit.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
33750f11199f initial commit.
nishanth
parents:
diff changeset
     1
from django.conf.urls.defaults import *
33750f11199f initial commit.
nishanth
parents:
diff changeset
     2
33750f11199f initial commit.
nishanth
parents:
diff changeset
     3
# Uncomment the next two lines to enable the admin:
33750f11199f initial commit.
nishanth
parents:
diff changeset
     4
# from django.contrib import admin
33750f11199f initial commit.
nishanth
parents:
diff changeset
     5
# admin.autodiscover()
33750f11199f initial commit.
nishanth
parents:
diff changeset
     6
33750f11199f initial commit.
nishanth
parents:
diff changeset
     7
urlpatterns = patterns('',
33750f11199f initial commit.
nishanth
parents:
diff changeset
     8
    # Example:
33750f11199f initial commit.
nishanth
parents:
diff changeset
     9
    # (r'^offline/', include('offline.foo.urls')),
33750f11199f initial commit.
nishanth
parents:
diff changeset
    10
33750f11199f initial commit.
nishanth
parents:
diff changeset
    11
    # Uncomment the admin/doc line below and add 'django.contrib.admindocs' 
33750f11199f initial commit.
nishanth
parents:
diff changeset
    12
    # to INSTALLED_APPS to enable admin documentation:
33750f11199f initial commit.
nishanth
parents:
diff changeset
    13
    # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
33750f11199f initial commit.
nishanth
parents:
diff changeset
    14
33750f11199f initial commit.
nishanth
parents:
diff changeset
    15
    # Uncomment the next line to enable the admin:
33750f11199f initial commit.
nishanth
parents:
diff changeset
    16
    # (r'^admin/', include(admin.site.urls)),
33750f11199f initial commit.
nishanth
parents:
diff changeset
    17
)