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://codecov.io/gh/browniebroke/django-tinymce4-widget/branch/master/graph/badge.svg https://readthedocs.org/projects/django-tinymce4-widget/badge/?version=latest 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.

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


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-3.0.0.tar.gz (12.8 kB view details)

Uploaded Source

Built Distribution

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

Uploaded Python 2 Python 3

File details

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

File metadata

File hashes

Hashes for django-tinymce4-widget-3.0.0.tar.gz
Algorithm Hash digest
SHA256 c3af456efe5e900256cdd74ac3de0119bb7edc4fef2f0a73278e16a4d39fd9fb
MD5 0e44608104abadc2e32941e242b337df
BLAKE2b-256 82c4b12995d8e4acf8b284070d4403c8984b15adee3883181cf113eb8fdfcc99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for django_tinymce4_widget-3.0.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 593671de580e6ee30f924979353fb0f08adae3b81742ab5ff766a42850c805b0
MD5 81a2b6cdca725c85d4645a198c39ea90
BLAKE2b-256 688fc94cabe410e9b9ef8ccc1c78231f997cb23b724348332fc0b0c994874d8c

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