mirror of
https://github.com/django/django.git
synced 2024-11-18 23:44:22 +00:00
a020dd0a99
Thanks to @dmyerscoug for the report and original patch and to @alasdairnicol for the added tests.
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'),
|
|
)
|