A Django application that provides a TinyMCE 4 editor widget for models and forms, 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. The application can use django-filebrowser or django-filebrowser-no-grappelli as a file manager for TinyMCE 4 to insert images and file links into edited text.
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: 2.7, 3.4, 3.5, 3.6
Django: 1.10-2.0
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/en/latest/
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-3.0.0.tar.gz
.
File metadata
- Download URL: django-tinymce4-widget-3.0.0.tar.gz
- Upload date:
- Size: 12.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c3af456efe5e900256cdd74ac3de0119bb7edc4fef2f0a73278e16a4d39fd9fb |
|
MD5 | 0e44608104abadc2e32941e242b337df |
|
BLAKE2b-256 | 82c4b12995d8e4acf8b284070d4403c8984b15adee3883181cf113eb8fdfcc99 |
File details
Details for the file django_tinymce4_widget-3.0.0-py2.py3-none-any.whl
.
File metadata
- Download URL: django_tinymce4_widget-3.0.0-py2.py3-none-any.whl
- Upload date:
- Size: 12.5 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 593671de580e6ee30f924979353fb0f08adae3b81742ab5ff766a42850c805b0 |
|
MD5 | 81a2b6cdca725c85d4645a198c39ea90 |
|
BLAKE2b-256 | 688fc94cabe410e9b9ef8ccc1c78231f997cb23b724348332fc0b0c994874d8c |