A Django application that provides a TinyMCE 4 editor widget without any static files
Project description
django-tinymce4-widget
django-tinymce4-widget is a reworked fork of django-tinymce4-lite. It provides a minimal TinyMCE 4 editor widget that can be used in Django forms.
This version does not include any static files, it's using the TinyMCE from the CDN by default.
Warning: TinyMCE 4 is incompatible with TinyMCE 3. Read TinyMCE docs for more information about how to configure TimyMCE 4 editor widget.
Compatibility
- Python: 3.6-3.9
- Django: 2.2-3.2
Quick Start
Install django-tinymce4-widget
:
$ pip install django-tinymce4-widget
Add tinymce
to INSTALLED_APPS
in settings.py
for your Django project:
INSTALLED_APPS = (
...
'tinymce',
)
Add tinymce.urls
to urls.py
for your project:
urlpatterns = [
...
url(r'^tinymce/', include('tinymce.urls')),
...
]
In your code:
from django.db import models
from tinymce import HTMLField
class MyModel(models.Model):
...
content = HTMLField('Content')
In Django Admin the widget is used automatically for all models that have HTMLField
fields. If you are using TinyMCE 4 in your website forms, add form.media
variable into your templates:
<!DOCTYPE html>
<html>
<head>
...
{{ form.media }}
</head>
<body>
...
</body>
</html>
Documentation
The full documentation is available at http://django-tinymce4-widget.readthedocs.io
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file django-tinymce4-widget-6.1.5.tar.gz
.
File metadata
- Download URL: django-tinymce4-widget-6.1.5.tar.gz
- Upload date:
- Size: 11.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.7.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c4d968e603b8355f22a33a8260c21eaad4743ca251bab4a9f4cc71a9349f0789 |
|
MD5 | 8d5facf6c5ac7152ee4fbeec0b2cf5bd |
|
BLAKE2b-256 | bb470cb2cc2fae58db441cd243f2fe2c3a668967fe98a3d379de2b09fd829ce1 |
File details
Details for the file django_tinymce4_widget-6.1.5-py3-none-any.whl
.
File metadata
- Download URL: django_tinymce4_widget-6.1.5-py3-none-any.whl
- Upload date:
- Size: 10.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.7.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4992787d2a3a49e8ccac6b2c84686ed58b8db8b7d4503b9dc9aebdd58c6cf190 |
|
MD5 | eefa137b78a6c7de4e5e2f6bfa4a4839 |
|
BLAKE2b-256 | 4ecc6862d005b1e057d7b9745842468bfd5094e67b3386cf23861049aa989ad5 |