diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-08-09 14:57:01 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-08-09 14:59:53 +0200 |
commit | 47285906fbfd73ad6fbab098709375c48421a717 (patch) | |
tree | 220a53ef08a097a652e79e7a4abd312515d4e9aa | |
parent | a52afe958a6f9d45d55065be044e3daf101936cd (diff) | |
download | Ishtar-47285906fbfd73ad6fbab098709375c48421a717.tar.bz2 Ishtar-47285906fbfd73ad6fbab098709375c48421a717.zip |
Settings: add explicitly a new static dir to STATICFILES_DIRS in order to overload admin files
-rw-r--r-- | example_project/settings.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/example_project/settings.py b/example_project/settings.py index 6b3022089..a104d4715 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -33,6 +33,10 @@ BASE_URL = "/" URL_PATH = "" EXTRA_VERSION = 'git' +STATICFILES_DIRS = ( + ROOT_PATH + "../static/", +) + ODT_TEMPLATE = ROOT_PATH + "../ishtar_common/static/template.odt" LOGIN_REDIRECT_URL = "/" + URL_PATH |