Add section markers
This commit is contained in:
parent
b97118cffd
commit
007b8f7ec6
7 changed files with 44 additions and 4 deletions
|
|
@ -1,12 +1,17 @@
|
|||
from __future__ import annotations
|
||||
|
||||
from typing import TYPE_CHECKING
|
||||
|
||||
from django.urls import path
|
||||
|
||||
from accounts import views
|
||||
|
||||
if TYPE_CHECKING:
|
||||
from django.urls.resolvers import URLPattern
|
||||
|
||||
app_name = "accounts"
|
||||
|
||||
urlpatterns = [
|
||||
urlpatterns: list[URLPattern] = [
|
||||
path("login/", views.CustomLoginView.as_view(), name="login"),
|
||||
path("logout/", views.CustomLogoutView.as_view(), name="logout"),
|
||||
path("signup/", views.SignUpView.as_view(), name="signup"),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue