mirror of
https://github.com/django/django.git
synced 2024-11-18 15:34:16 +00:00
c651331b34
Thanks Tim Graham for the review.
10 lines
362 B
Python
10 lines
362 B
Python
from django.conf.urls import url
|
|
from django.conf.urls.i18n import i18n_patterns
|
|
from django.http import HttpResponse, StreamingHttpResponse
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
urlpatterns = i18n_patterns(
|
|
url(r'^simple/$', lambda r: HttpResponse()),
|
|
url(r'^streaming/$', lambda r: StreamingHttpResponse([_("Yes"), "/", _("No")])),
|
|
)
|