urls.py
changeset 0 5fb12cd6d64d
child 2 4d2bbb2f3c4e
equal deleted inserted replaced
-1:000000000000 0:5fb12cd6d64d
       
     1 from django.conf.urls.defaults import *
       
     2 
       
     3 # Uncomment the next two lines to enable the admin:
       
     4 # from django.contrib import admin
       
     5 # admin.autodiscover()
       
     6 
       
     7 urlpatterns = patterns('',
       
     8     # Example:
       
     9     # (r'^spoken_tut/', include('spoken_tut.foo.urls')),
       
    10 
       
    11     # Uncomment the admin/doc line below and add 'django.contrib.admindocs' 
       
    12     # to INSTALLED_APPS to enable admin documentation:
       
    13     # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
       
    14 
       
    15     # Uncomment the next line to enable the admin:
       
    16     # (r'^admin/(.*)', admin.site.root),
       
    17 )