mirror of
https://github.com/django/django.git
synced 2024-11-18 15:34:16 +00:00
66ec9ee441
Thanks tomwys for the suggestion.
11 lines
259 B
Python
11 lines
259 B
Python
from django.conf.urls import url
|
|
|
|
from .views import empty_view
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^$', empty_view, name="named-url5"),
|
|
url(r'^extra/(?P<extra>\w+)/$', empty_view, name="named-url6"),
|
|
url(r'^(?P<one>[0-9]+)|(?P<two>[0-9]+)/$', empty_view),
|
|
]
|