2018-12-07 17:52:28 -05:00
|
|
|
from django.urls import include, path, re_path
|
2016-10-20 19:29:04 +02: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 21:26:20 +05:30
|
|
|
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-20 19:29:04 +02:00
|
|
|
path("users/", views.empty_view, name="users"),
|
|
|
|
path("users/<id>/", views.empty_view, name="user-with-id"),
|
2018-11-30 16:25:52 +01:00
|
|
|
path("included_urls/", include("urlpatterns.included_urls")),
|
2017-11-02 17:35:41 +01:00
|
|
|
re_path(r"^regex/(?P<pk>[0-9]+)/$", views.empty_view, name="regex"),
|
2019-06-21 17:37:41 +02:00
|
|
|
re_path(
|
|
|
|
r"^regex_optional/(?P<arg1>\d+)/(?:(?P<arg2>\d+)/)?",
|
|
|
|
views.empty_view,
|
|
|
|
name="regex_optional",
|
|
|
|
),
|
2019-12-06 09:32:51 +01:00
|
|
|
re_path(
|
|
|
|
r"^regex_only_optional/(?:(?P<arg1>\d+)/)?",
|
|
|
|
views.empty_view,
|
|
|
|
name="regex_only_optional",
|
|
|
|
),
|
2022-03-28 21:26:20 +05:30
|
|
|
path("", include("urlpatterns.more_urls"), {"sub-extra": False}),
|
2016-10-20 19:29:04 +02:00
|
|
|
path("<lang>/<path:url>/", views.empty_view, name="lang-and-path"),
|
|
|
|
]
|