2005-07-17 06:58:29 +08:00
|
|
|
from django.conf.urls.defaults import *
|
|
|
|
|
2008-07-22 01:10:27 +08:00
|
|
|
# Uncomment the next two lines to enable the admin:
|
2008-07-21 02:05:11 +08:00
|
|
|
# from django.contrib import admin
|
2008-07-21 02:09:27 +08:00
|
|
|
# admin.autodiscover()
|
|
|
|
|
2005-07-17 06:58:29 +08:00
|
|
|
urlpatterns = patterns('',
|
|
|
|
# Example:
|
2006-11-27 08:38:09 +08:00
|
|
|
# (r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),
|
2005-10-19 09:09:05 +08:00
|
|
|
|
2008-09-03 00:52:42 +08:00
|
|
|
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
|
|
|
|
# to INSTALLED_APPS to enable admin documentation:
|
2008-07-21 02:05:11 +08:00
|
|
|
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
|
2008-07-19 07:54:34 +08:00
|
|
|
|
2008-08-18 21:52:26 +08:00
|
|
|
# Uncomment the next line to enable the admin:
|
2009-01-15 04:22:25 +08:00
|
|
|
# (r'^admin/', include(admin.site.urls)),
|
2005-07-17 06:58:29 +08:00
|
|
|
)
|