2008-09-30 05:52:35 +00:00
|
|
|
"""
|
|
|
|
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.
|
|
|
|
"""
|
|
|
|
|
2018-12-07 22:52:28 +00:00
|
|
|
from django.urls import re_path
|
2011-10-13 21:34:56 +00:00
|
|
|
|
|
|
|
from .views import empty_view
|
|
|
|
|
2014-04-02 00:46:34 +00:00
|
|
|
urlpatterns = [
|
2018-12-07 22:52:28 +00:00
|
|
|
re_path(r"^part/(?P<value>\w+)/$", empty_view, name="part"),
|
|
|
|
re_path(r"^part2/(?:(?P<value>\w+)/)?$", empty_view, name="part2"),
|
2014-04-02 00:46:34 +00:00
|
|
|
]
|