2018-12-08 06:52:28 +08:00
|
|
|
from django.urls import path
|
2010-03-08 04:11:00 +08:00
|
|
|
|
2014-08-12 22:54:42 +08:00
|
|
|
from . import views
|
|
|
|
|
2014-04-02 08:46:34 +08:00
|
|
|
urlpatterns = [
|
2018-12-08 06:52:28 +08:00
|
|
|
path('customurlconf/noslash', views.empty_view),
|
|
|
|
path('customurlconf/slash/', views.empty_view),
|
|
|
|
path('customurlconf/needsquoting#/', views.empty_view),
|
2014-04-02 08:46:34 +08:00
|
|
|
]
|