2018-12-08 06:52:28 +08:00
|
|
|
from django.urls import include, path, re_path
|
2016-10-21 01:29:04 +08:00
|
|
|
|
|
|
|
from . import views
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
path("articles/2003/", views.empty_view, name="articles-2003"),
|
|
|
|
path("articles/<int:year>/", views.empty_view, name="articles-year"),
|
|
|
|
path(
|
|
|
|
"articles/<int:year>/<int:month>/", views.empty_view, name="articles-year-month"
|
|
|
|
),
|
|
|
|
path(
|
|
|
|
"articles/<int:year>/<int:month>/<int:day>/",
|
|
|
|
views.empty_view,
|
|
|
|
name="articles-year-month-day",
|
|
|
|
),
|
2022-03-28 23:56:20 +08:00
|
|
|
path("books/2007/", views.empty_view, {"extra": True}, name="books-2007"),
|
|
|
|
path(
|
|
|
|
"books/<int:year>/<int:month>/<int:day>/",
|
|
|
|
views.empty_view,
|
|
|
|
{"extra": True},
|
|
|
|
name="books-year-month-day",
|
|
|
|
),
|
2016-10-21 01:29:04 +08:00
|
|
|
path("users/", views.empty_view, name="users"),
|
|
|
|
path("users/<id>/", views.empty_view, name="user-with-id"),
|
2018-11-30 23:25:52 +08:00
|
|
|
path("included_urls/", include("urlpatterns.included_urls")),
|
2017-11-03 00:35:41 +08:00
|
|
|
re_path(r"^regex/(?P<pk>[0-9]+)/$", views.empty_view, name="regex"),
|
2019-06-21 23:37:41 +08:00
|
|
|
re_path(
|
|
|
|
r"^regex_optional/(?P<arg1>\d+)/(?:(?P<arg2>\d+)/)?",
|
|
|
|
views.empty_view,
|
|
|
|
name="regex_optional",
|
|
|
|
),
|
2019-12-06 16:32:51 +08:00
|
|
|
re_path(
|
|
|
|
r"^regex_only_optional/(?:(?P<arg1>\d+)/)?",
|
|
|
|
views.empty_view,
|
|
|
|
name="regex_only_optional",
|
|
|
|
),
|
2022-03-28 23:56:20 +08:00
|
|
|
path("", include("urlpatterns.more_urls"), {"sub-extra": False}),
|
2016-10-21 01:29:04 +08:00
|
|
|
path("<lang>/<path:url>/", views.empty_view, name="lang-and-path"),
|
|
|
|
]
|