Skip to main content

A Django application that provides a TinyMCE 4 editor widget for models and forms, without any static files.

Project description

django-tinymce4-widget

https://travis-ci.org/browniebroke/django-tinymce4-widget.svg?branch=master https://badge.fury.io/py/django-tinymce4-widget.svg

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.11

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

https://browniebroke.github.io/django-tinymce4-widget/

License

MIT license. See LICENSE.txt

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-tinymce4-widget-2.1.1.tar.gz (12.8 kB view details)

Uploaded Source

Built Distribution

django_tinymce4_widget-2.1.1-py2.py3-none-any.whl (12.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file django-tinymce4-widget-2.1.1.tar.gz.

File metadata

File hashes

Hashes for django-tinymce4-widget-2.1.1.tar.gz
Algorithm Hash digest
SHA256 66d24b0c177644b674e0b30563af9512746e3cd4d46ddf06af985e8f39e42cc6
MD5 334203fd36872a9402d9a40d17064a43
BLAKE2b-256 73cb5bd2b20b7f336b6ed89c2fe28f0a00ef1feafd017af3e64759374d698d27

See more details on using hashes here.

File details

Details for the file django_tinymce4_widget-2.1.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for django_tinymce4_widget-2.1.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 8fcb255268a27a31770518ff2f62fa28f8b7f1fea0cbb3efc3aec61026ba8710
MD5 fe3f4acd5944f278e4962b89c96476f7
BLAKE2b-256 5893bd491bd56effa2f71cfd1166107914deafa475b608ee60e56a69485cdd62

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page