Using the TinyMCE .zip package with the Django framework
This Integration is maintained by a third-party developer. Tiny Technologies, Inc. bears no responsibility for this integration, which is not covered by the Tiny Self-Hosted Software License Agreement. For issues related to the integration, contact the third-party project directly. |
For information on adding TinyMCE to a Django project, try using the Python-based django-tinymce
package. For information on setting up django-tinymce
, see: the django-tinymce Documentation.
To download TinyMCE and use it with the django-tinymce
package:
-
Get the package from TinyMCE Downloads.
-
Unzip the package and move the
'path/to/tinymce/'
directory into the django project. -
Add a URL path to the
tinymce
directory. -
Add the relevant configuration setting:
-
If you do not need the
TINYMCE_COMPRESSOR
(TINYMCE_COMPRESSOR = False
), addTINYMCE_JS_URL
to the project’ssettings.py
file pointing totinymce/tinymce.min.js
. Such as:TINYMCE_JS_URL = os.path.join(MEDIA_URL, "path/to/tinymce/tinymce.min.js") TINYMCE_COMPRESSOR = False
-
If you do need the
TINYMCE_COMPRESSOR
(TINYMCE_COMPRESSOR = TRUE
), addTINYMCE_JS_ROOT
to the project’ssettings.py
file pointing to thetinymce/
root directory. Such as:TINYMCE_JS_ROOT = os.path.join(MEDIA_URL, "path/to/tinymce") TINYMCE_COMPRESSOR = True
-