From 92d12e6d59f2738ea8204f5f1cdc2ade5db7070a Mon Sep 17 00:00:00 2001
From: Pierre-antoine Comby <comby@crans.org>
Date: Wed, 26 Feb 2020 19:32:12 +0100
Subject: [PATCH] don't use STATICFILES_DIRS

---
 note_kfet/settings/base.py | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/note_kfet/settings/base.py b/note_kfet/settings/base.py
index 7d7eb21d..d46ffbe2 100644
--- a/note_kfet/settings/base.py
+++ b/note_kfet/settings/base.py
@@ -177,9 +177,9 @@ FIXTURE_DIRS = [os.path.join(BASE_DIR, "note_kfet/fixtures")]
 # in apps' "static/" subdirectories and in STATICFILES_DIRS.
 # Example: "/var/www/example.com/static/"
 STATIC_ROOT = os.path.join(BASE_DIR,"static/") 
-STATICFILES_DIRS = [
-    os.path.join(BASE_DIR, 'static')]
-
+# STATICFILES_DIRS = [
+#    os.path.join(BASE_DIR, 'static')]
+STATICFILES_DIRS = []
 CRISPY_TEMPLATE_PACK = 'bootstrap4'
 DJANGO_TABLES2_TEMPLATE = 'django_tables2/bootstrap4.html'
 # URL prefix for static files.
-- 
GitLab