A Django application that provides minimal 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. As compared to the original fork, this package provides Django 1.7 support.
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
Django: 1.7, 1.8, 1.9, 1.10
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
License
MIT license. See LICENSE.txt
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
File details
Details for the file django-tinymce4-widget-1.0.tar.gz
.
File metadata
- Download URL: django-tinymce4-widget-1.0.tar.gz
- Upload date:
- Size: 11.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 80f7a29d03b5f26aeed26da7ba3e11ddd2276aff571fd83e898fef5dad4cdddc |
|
MD5 | a8ac00ab95a63b59d67aaa24e3b17119 |
|
BLAKE2b-256 | b7976095a351b270547b909d4e2b738cd44a3a5fdf2f61e8a3b0d6aa78ecf2c2 |