mirror of
https://github.com/django/django.git
synced 2024-11-18 15:34:16 +00:00
78963495d0
Thanks Tim Graham for the review.
11 lines
142 B
Python
11 lines
142 B
Python
from django.conf.urls import url
|
|
|
|
|
|
def some_view(request):
|
|
pass
|
|
|
|
|
|
urlpatterns = [
|
|
url(r'^some-url/$', some_view, name='some-view'),
|
|
]
|