diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-04-16 20:14:54 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2013-04-16 20:14:54 +0200 |
commit | e9d334d8b1ec12702275abf2383e7aae01dfba6d (patch) | |
tree | 515107ae533dc2cd59cd018c92843ac3ae2a3fe2 /example_project | |
parent | 5f353bdd79fe725c4a2384acbef11d223e371ce5 (diff) | |
download | Ishtar-e9d334d8b1ec12702275abf2383e7aae01dfba6d.tar.bz2 Ishtar-e9d334d8b1ec12702275abf2383e7aae01dfba6d.zip |
Fix default path for ODT template (closes #1213)
Diffstat (limited to 'example_project')
-rw-r--r-- | example_project/settings.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/example_project/settings.py b/example_project/settings.py index af71e2896..a9888375f 100644 --- a/example_project/settings.py +++ b/example_project/settings.py @@ -13,8 +13,7 @@ JQUERY_URL = "http://localhost/javascript/jquery/jquery.js" JQUERY_UI_URL = "http://localhost/javascript/jquery-ui/" XHTML2ODT_PATH = ROOT_PATH + "../xhtml2odt" -ODT_TEMPLATE = os.sep.join([ROOT_PATH[:-1], "..", "ishtar_common", - "static", "template.odt"]) +ODT_TEMPLATE = ROOT_PATH + "../ishtar_common/static/template.odt" LOGIN_REDIRECT_URL = "/" + URL_PATH DEBUG = 1 |