2011-02-05 01:37:25 +08:00
|
|
|
from django.conf.urls.defaults import patterns, include, url
|
2005-07-17 06:58:29 +08:00
|
|
|
|
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('',
|
2011-02-05 01:37:25 +08:00
|
|
|
# Examples:
|
|
|
|
# url(r'^$', '{{ project_name }}.views.home', name='home'),
|
|
|
|
# url(r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),
|
2005-10-19 09:09:05 +08:00
|
|
|
|
2010-08-28 20:38:05 +08:00
|
|
|
# Uncomment the admin/doc line below to enable admin documentation:
|
2011-02-05 01:37:25 +08:00
|
|
|
# url(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:
|
2011-02-05 01:37:25 +08:00
|
|
|
# url(r'^admin/', include(admin.site.urls)),
|
2005-07-17 06:58:29 +08:00
|
|
|
)
|