mirror of
https://github.com/django/django.git
synced 2025-03-13 10:50:55 +00:00
Thanks to @dmyerscoug for the report and original patch and to @alasdairnicol for the added tests. Backport of a020dd0a99da13d0f024d42c46f01d8f503e9d5e from master.
6 lines
140 B
Python
6 lines
140 B
Python
from django.conf.urls import patterns, url
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^index/$', 'view_tests.views.index_page', name='index'),
|
|
)
|