2018-12-08 06:52:28 +08:00
|
|
|
from django.urls import path
|
2011-01-20 12:47:47 +08:00
|
|
|
|
2011-10-14 05:34:56 +08:00
|
|
|
from . import views
|
2011-01-20 12:47:47 +08:00
|
|
|
|
2014-04-02 08:46:34 +08:00
|
|
|
urlpatterns = [
|
2018-12-08 06:52:28 +08:00
|
|
|
path("test_utils/get_person/<int:pk>/", views.get_person),
|
2019-01-21 22:31:33 +08:00
|
|
|
path(
|
|
|
|
"test_utils/no_template_used/", views.no_template_used, name="no_template_used"
|
|
|
|
),
|
2014-04-02 08:46:34 +08:00
|
|
|
]
|