mirror of
https://github.com/django/django.git
synced 2025-01-27 10:39:40 +00:00
d73d0e071c
Thanks Carl Meyer for the suggestion and Alex Gaynor and Carl for reviews.
10 lines
204 B
Python
10 lines
204 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^test_utils/get_person/(\d+)/$', views.get_person),
|
|
url(r'^test_utils/no_template_used/$', views.no_template_used),
|
|
]
|