diff --git a/PX360/settings.py b/PX360/settings.py index f6282b8..b614350 100644 --- a/PX360/settings.py +++ b/PX360/settings.py @@ -126,7 +126,11 @@ USE_TZ = True # Static files (CSS, JavaScript, Images) # https://docs.djangoproject.com/en/6.0/howto/static-files/ -STATIC_URL = 'static/' +STATIC_URL = "/static/" +STATIC_ROOT = BASE_DIR / "staticfiles" +STATICFILES_DIRS = [ + BASE_DIR / "static", +] # Celery Configuration CELERY_BROKER_URL = 'redis://localhost:6379/0' diff --git a/templates/core/public_submit.html b/templates/core/public_submit.html index a184798..219a829 100644 --- a/templates/core/public_submit.html +++ b/templates/core/public_submit.html @@ -280,7 +280,7 @@ header.glass-card {
+