2008-09-01 01:20:40 +08:00
|
|
|
"""
|
|
|
|
Some extra URL patterns that are included at the top level.
|
|
|
|
"""
|
|
|
|
|
2018-12-08 06:52:28 +08:00
|
|
|
from django.urls import include, path, 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('^e-places/([0-9]+)/$', empty_view, name='extra-places'),
|
|
|
|
re_path(r'^e-people/(?P<name>\w+)/$', empty_view, name='extra-people'),
|
|
|
|
path('', include('urlpatterns_reverse.included_urls2')),
|
|
|
|
re_path(r'^prefix/(?P<prefix>\w+)/', include('urlpatterns_reverse.included_urls2')),
|
2014-04-02 08:46:34 +08:00
|
|
|
]
|