feat: add start_page user config

This commit is contained in:
Herculino Trotta
2024-10-21 00:02:57 -03:00
parent 2b5011071f
commit 2b1fdd49e5
7 changed files with 45 additions and 3 deletions

View File

@@ -3,6 +3,7 @@ from django.urls import path
from . import views
urlpatterns = [
path("", views.index, name="index"),
path("login/", views.UserLoginView.as_view(), name="login"),
# path("login/fallback/", views.UserLoginView.as_view(), name="fallback_login"),
path("logout/", views.logout_view, name="logout"),