summaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2024-09-04 12:07:17 +0100
committerMatthew Lemon <y@yulqen.org>2024-09-04 12:07:17 +0100
commit370b16f4156ccdc9956dedc00e5dfb6106380d9d (patch)
treed5d3b1ed80c8e84680f3512a1b4286472dfffffd /conf
parenta26857dfb80c5427fd819fd231994ea5be187a9f (diff)
UI changes
- ripped out more w3 stuff - better login page template - redirects to home after successful login
Diffstat (limited to 'conf')
-rw-r--r--conf/settings/base.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/conf/settings/base.py b/conf/settings/base.py
index fb9b658..5f7301c 100644
--- a/conf/settings/base.py
+++ b/conf/settings/base.py
@@ -51,6 +51,7 @@ INSTALLED_APPS = [
"django.contrib.messages",
"django.contrib.staticfiles",
"django_htmx",
+ "widget_tweaks",
# "debug_toolbar",
]
@@ -79,6 +80,7 @@ ROOT_URLCONF = "ded.urls"
# new auth user
AUTH_USER_MODEL = "myuser.TeamUser"
+LOGIN_REDIRECT_URL = "/"
TEMPLATES = [
{