mirror of
https://github.com/django/django.git
synced 2024-11-18 15:34:16 +00:00
a020dd0a99
Thanks to @dmyerscoug for the report and original patch and to @alasdairnicol for the added tests.
9 lines
221 B
Python
9 lines
221 B
Python
from django.conf.urls import patterns, include, url
|
|
|
|
from django.contrib import admin
|
|
|
|
urlpatterns = patterns('',
|
|
# This is the same as in the default project template
|
|
url(r'^admin/', include(admin.site.urls)),
|
|
)
|