summaryrefslogtreecommitdiff
path: root/tests/urlpatterns_reverse/included_urls2.py
blob: 5d502383c27b389a1247322812b0b99b2d67513f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
"""
These URL patterns are included in two different ways in the main urls.py, with
an extra argument present in one case. Thus, there are two different ways for
each name to resolve and Django must distinguish the possibilities based on the
argument list.
"""

from django.urls import re_path

from .views import empty_view

urlpatterns = [
    re_path(r"^part/(?P<value>\w+)/$", empty_view, name="part"),
    re_path(r"^part2/(?:(?P<value>\w+)/)?$", empty_view, name="part2"),
]