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