From 64d4cccc8e9022b4bc46625cc0900221023f57a4 Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Sat, 19 Dec 2020 19:29:58 +0100 Subject: [PATCH] Fix #24 set CKeditor base path --- conf/ynh_pyinventory_settings.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/conf/ynh_pyinventory_settings.py b/conf/ynh_pyinventory_settings.py index 25cc266..cfc0b79 100644 --- a/conf/ynh_pyinventory_settings.py +++ b/conf/ynh_pyinventory_settings.py @@ -145,6 +145,10 @@ else: STATIC_ROOT = str(FINAL_WWW_PATH / 'static') MEDIA_ROOT = str(FINAL_WWW_PATH / 'media') +# _____________________________________________________________________________ +# django-ckeditor + +CKEDITOR_BASEPATH = STATIC_URL + 'ckeditor/ckeditor/' # -----------------------------------------------------------------------------