diff options
author | Christian Pointner <equinox@helsinki.at> | 2021-06-15 20:52:55 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2021-06-15 20:52:55 (GMT) |
commit | 09276cc47736785e7a2784172a2cf3663de4e57e (patch) | |
tree | 202b46bfc67595a64bda7aa4ac359e0957b09189 /pv | |
parent | b2415eb92622563f567106e2c4951ed498273e53 (diff) | |
parent | 88fb9a1d5bc7dc5f22d96fcee970f4ec9f88b289 (diff) |
Merge branch 'topic/new-show-and-note-images' into stable
Diffstat (limited to 'pv')
-rw-r--r-- | pv/settings.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/pv/settings.py b/pv/settings.py index 47b9d2e..5e251df 100644 --- a/pv/settings.py +++ b/pv/settings.py @@ -90,15 +90,21 @@ INSTALLED_APPS = ( 'tinymce', ) -TINYMCE_JS_URL = '/static/js/tiny_mce/tiny_mce.js' TINYMCE_DEFAULT_CONFIG = { - 'plugins': 'contextmenu', + 'plugins': 'advimage,advlink,advlist,autoresize,contextmenu,paste', 'theme': 'advanced', 'theme_advanced_toolbar_location': 'top', + 'theme_advanced_toolbar_align': 'center', + 'theme_advanced_statusbar_location': 'bottom', + 'theme_advanced_resizing': 'true', + 'theme_advanced_path': 'false', + 'theme_advanced_buttons3_add': 'separator,pastetext,pasteword,selectall', + 'paste_block_drop': 'true', } CACHE_BACKEND = 'locmem://' + MUSIKPROG_IDS = ( 1, # unmodieriertes musikprogramm ) |