mirror of
https://github.com/django/django.git
synced 2025-08-03 02:23:12 +00:00

Thanks to @dmyerscoug for the report and original patch and to @alasdairnicol for the added tests.
5 lines
140 B
Python
5 lines
140 B
Python
from django.conf.urls import patterns, url
|
|
|
|
urlpatterns = patterns('',
|
|
url(r'^index/$', 'view_tests.views.index_page', name='index'),
|
|
)
|