app/django/conf/project_template/urls.py
changeset 323 ff1a9aa48cfd
parent 54 03e267d67478
equal deleted inserted replaced
322:6641e941ef1e 323:ff1a9aa48cfd
     1 from django.conf.urls.defaults import *
     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()
     2 
     6 
     3 urlpatterns = patterns('',
     7 urlpatterns = patterns('',
     4     # Example:
     8     # Example:
     5     # (r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),
     9     # (r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),
     6 
    10 
     7     # Uncomment this for admin:
    11     # Uncomment the admin/doc line below and add 'django.contrib.admindocs' 
     8 #     (r'^admin/', include('django.contrib.admin.urls')),
    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),
     9 )
    17 )