From f5bfbddfbe56fb57e25ad7a7c06875aead243890 Mon Sep 17 00:00:00 2001 From: Tom Hubrecht Date: Sat, 11 Jan 2025 14:16:13 +0100 Subject: [PATCH] fix(bds_settings): Serve files at the right url --- gestioasso/settings_bds.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gestioasso/settings_bds.py b/gestioasso/settings_bds.py index 82d4a520..231ae101 100644 --- a/gestioasso/settings_bds.py +++ b/gestioasso/settings_bds.py @@ -129,10 +129,10 @@ SITE_ID = 1 # Staticfiles configuration STATIC_ROOT = credentials["STATIC_ROOT"] -STATIC_URL = "/gestion/static/" +STATIC_URL = "/static/" MEDIA_ROOT = credentials.get("MEDIA_ROOT", (BASE_DIR / "media")) -MEDIA_URL = "/gestion/media/" +MEDIA_URL = "/media/" ##