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