diff --git a/korrekturmanagementsystem/settings.py b/korrekturmanagementsystem/settings.py index 837fdb8..4c773ca 100644 --- a/korrekturmanagementsystem/settings.py +++ b/korrekturmanagementsystem/settings.py @@ -119,6 +119,7 @@ USE_TZ = True # https://docs.djangoproject.com/en/5.2/howto/static-files/ STATIC_URL = "static/" +STATICFILES_DIRS = [BASE_DIR / "static"] # Default primary key field type # https://docs.djangoproject.com/en/5.2/ref/settings/#default-auto-field diff --git a/ticketsystem/static/css/style.css b/ticketsystem/static/css/style.css new file mode 100644 index 0000000..a461c50 --- /dev/null +++ b/ticketsystem/static/css/style.css @@ -0,0 +1 @@ +@import "tailwindcss"; \ No newline at end of file diff --git a/ticketsystem/templates/ticketsystem/base.html b/ticketsystem/templates/ticketsystem/base.html index 67b6806..54ffaf3 100644 --- a/ticketsystem/templates/ticketsystem/base.html +++ b/ticketsystem/templates/ticketsystem/base.html @@ -1,8 +1,10 @@ +{% load static %}