mirror of
https://github.com/django/django.git
synced 2024-11-18 15:34:16 +00:00
b38637d581
Thanks Antti Häyrynen and Tim Graham for the report, and Aymeric Augustin for the review.
15 lines
408 B
Python
15 lines
408 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
url(r'^regular/$', views.regular),
|
|
url(r'^streaming/$', views.streaming),
|
|
url(r'^in_transaction/$', views.in_transaction),
|
|
url(r'^not_in_transaction/$', views.not_in_transaction),
|
|
url(r'^suspicious/$', views.suspicious),
|
|
url(r'^malformed_post/$', views.malformed_post),
|
|
]
|