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