Ajout connexion/déconnexion à l'espace membres
This commit is contained in:
parent
3d1b8a9bee
commit
6c3a1e6ddc
9 changed files with 108 additions and 2 deletions
|
|
@ -4,6 +4,8 @@ Django settings for beesgospel project.
|
|||
|
||||
from pathlib import Path
|
||||
|
||||
from django.urls import reverse_lazy
|
||||
|
||||
# Build paths inside the project like this: BASE_DIR / "subdir".
|
||||
BASE_DIR = Path(__file__).resolve().parent.parent
|
||||
|
||||
|
|
@ -109,6 +111,8 @@ USE_TZ = True
|
|||
STATIC_URL = "static/"
|
||||
STATIC_ROOT = BASE_DIR / "static"
|
||||
|
||||
LOGOUT_REDIRECT_URL = reverse_lazy("presentation")
|
||||
|
||||
# Default primary key field type
|
||||
# https://docs.djangoproject.com/en/5.2/ref/settings/#default-auto-field
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue