2008-09-30 13:52:35 +08: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-08 06:52:28 +08:00
|
|
|
from django.urls import re_path
|
2011-10-14 05:34:56 +08:00
|
|
|
|
|
|
|
from .views import empty_view
|
|
|
|
|
2014-04-02 08:46:34 +08:00
|
|
|
urlpatterns = [
|
2018-12-08 06:52:28 +08: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 08:46:34 +08:00
|
|
|
]
|