diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-01-31 18:07:03 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2020-07-01 18:02:28 +0200 |
commit | 33ce79ea699a381220d503c9f24fe24fcd46b089 (patch) | |
tree | 5b49d1c95c5e126155a2ede61a8f572122c9bb34 /example_project | |
parent | 4bc47579ac905f1fb3cfccdaee597e568db10cba (diff) | |
download | Ishtar-33ce79ea699a381220d503c9f24fe24fcd46b089.tar.bz2 Ishtar-33ce79ea699a381220d503c9f24fe24fcd46b089.zip |
Fix static for datepicker
Diffstat (limited to 'example_project')
-rw-r--r-- | example_project/settings.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example_project/settings.py b/example_project/settings.py index 3c3b35859..4848cb628 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -52,7 +52,7 @@ STATICFILES_FINDERS = ( BS_STATIC = ROOT_PATH + "../bootstrap_datepicker/static" if not os.path.exists(BS_STATIC): - BS_STATIC = "/usr/lib/python3/dist-packages/bootstrap_datepicker/" + BS_STATIC = "/usr/lib/python3/dist-packages/bootstrap_datepicker/static" STATICFILES_DIRS = ( BS_STATIC, |