mirror of https://github.com/django/django.git
Added file missing from r13590.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13591 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
859fc020a7
commit
01720c979a
|
@ -0,0 +1,10 @@
|
|||
# A URLs file that doesn't use the default
|
||||
# from django.conf.urls.defaults import *
|
||||
# import pattern.
|
||||
from django.conf.urls.defaults import patterns, url
|
||||
from views import empty_view, bad_view
|
||||
|
||||
urlpatterns = patterns('',
|
||||
url(r'^test_view/$', empty_view, name="test_view"),
|
||||
url(r'^bad_view/$', bad_view, name="bad_view"),
|
||||
)
|
Loading…
Reference in New Issue