mirror of
https://github.com/django/django.git
synced 2025-08-01 09:32:50 +00:00

Thanks to @dmyerscoug for the report and original patch and to @alasdairnicol for the added tests.
8 lines
221 B
Python
8 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)),
|
|
)
|