mirror of
https://github.com/Hopiu/django.git
synced 2026-05-16 19:41:06 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4112 bcc190cf-cafb-0310-a4f2-bffc1f526a37
9 lines
249 B
Python
9 lines
249 B
Python
from django.conf.urls.defaults import *
|
|
|
|
urlpatterns = patterns('',
|
|
# Example:
|
|
# (r'^{{ project_name }}/', include('{{ project_name }}.foo.urls')),
|
|
|
|
# Uncomment this for admin:
|
|
# (r'^admin/', include('django.contrib.admin.urls')),
|
|
)
|