blob: 4a4289a95db92889ba841d286d3823dc3eb778d3 (
plain)
1
2
3
4
5
6
7
8
9
|
from django.urls import path
from . import views
urlpatterns = [
path('customurlconf/noslash', views.empty_view),
path('customurlconf/slash/', views.empty_view),
path('customurlconf/needsquoting#/', views.empty_view),
]
|