mirror of
https://github.com/django/django.git
synced 2024-11-24 20:07:01 +01:00
0e444e84f8
Regression in94e7f471c4
. This reverts commit94e7f471c4
(refs #34069) and partly reverts commit3b4728310a
. Thanks Anthony Baillard for the report. Co-Authored-By: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com>
13 lines
519 B
Python
13 lines
519 B
Python
from django.conf.urls.i18n import i18n_patterns
|
|
from django.http import HttpResponse
|
|
from django.urls import path, re_path
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
urlpatterns = i18n_patterns(
|
|
re_path(r"^(?P<arg>[\w-]+)-page", lambda request, **arg: HttpResponse(_("Yes"))),
|
|
path("simple/", lambda r: HttpResponse(_("Yes"))),
|
|
re_path(r"^(.+)/(.+)/$", lambda *args: HttpResponse()),
|
|
re_path(_(r"^users/$"), lambda *args: HttpResponse(), name="users"),
|
|
prefix_default_language=False,
|
|
)
|