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 | 2c55ec7636fc806ef77981c0469a82c1047ab6f1 (patch) | |
tree | 220a53ef08a097a652e79e7a4abd312515d4e9aa | |
parent | 0da18d32564c5020eaab7a77e7ee88aeb5f260d9 (diff) | |
download | Ishtar-2c55ec7636fc806ef77981c0469a82c1047ab6f1.tar.bz2 Ishtar-2c55ec7636fc806ef77981c0469a82c1047ab6f1.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 |