mirror of
https://github.com/django/django.git
synced 2025-12-04 00:55:36 +00:00
Refs #33476 -- Reformatted code with Black.
This commit is contained in:
parent
f68fa8b45d
commit
9c19aff7c7
1992 changed files with 139577 additions and 96284 deletions
|
|
@ -3,8 +3,8 @@ from django.urls import path
|
|||
from .views import LazyRedirectView, empty_view, login_required_view
|
||||
|
||||
urlpatterns = [
|
||||
path('redirected_to/', empty_view, name='named-lazy-url-redirected-to'),
|
||||
path('login/', empty_view, name='some-login-page'),
|
||||
path('login_required_view/', login_required_view),
|
||||
path('redirect/', LazyRedirectView.as_view()),
|
||||
path("redirected_to/", empty_view, name="named-lazy-url-redirected-to"),
|
||||
path("login/", empty_view, name="some-login-page"),
|
||||
path("login_required_view/", login_required_view),
|
||||
path("redirect/", LazyRedirectView.as_view()),
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue