1
0
mirror of https://github.com/django/django.git synced 2025-06-03 02:29:13 +00:00
2011-02-03 04:55:43 +00:00

17 lines
522 B
Python

from django.conf.urls.defaults import patterns, include
# Uncomment the next two lines to enable the admin:
# from django.contrib import admin
# admin.autodiscover()
urlpatterns = patterns('',
# Example:
# (r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),
# Uncomment the admin/doc line below 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)),
)