blob: c30a61a99ab181f224ef5774c11eb66dbc6fe4ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
"""
Some extra URL patterns that are included at the top level.
"""
from django.conf.urls import url, include
from .views import empty_view
urlpatterns = [
url(r'^e-places/([0-9]+)/$', empty_view, name='extra-places'),
url(r'^e-people/(?P<name>\w+)/$', empty_view, name="extra-people"),
url('', include('urlpatterns_reverse.included_urls2')),
url(r'^prefix/(?P<prefix>\w+)/', include('urlpatterns_reverse.included_urls2')),
]
|