Skip to main content

A Django application that provides a TinyMCE 4 editor widget without any static files

Project description

django-tinymce4-widget

CI Status Documentation Status Test coverage pre-commit.ci status

Poetry black pre-commit

PyPi Status pyversions license

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.8-3.11
  • Django: 3.2-4.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


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

Uploaded Source

Built Distribution

django_tinymce4_widget-7.0.1-py3-none-any.whl (10.9 kB view details)

Uploaded Python 3

File details

Details for the file django_tinymce4_widget-7.0.1.tar.gz.

File metadata

File hashes

Hashes for django_tinymce4_widget-7.0.1.tar.gz
Algorithm Hash digest
SHA256 a94265bcc8e80901bc673df66582b851f3fc514a0ada897162f89d9fff54a6f5
MD5 eb4e52d47dec340aab6c9f2fe09777bd
BLAKE2b-256 e39ff4d4318f7a0669b15d345b7d8cee6fffa45b14f99ff43a196f1ac3ed27c9

See more details on using hashes here.

File details

Details for the file django_tinymce4_widget-7.0.1-py3-none-any.whl.

File metadata

File hashes

Hashes for django_tinymce4_widget-7.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 64e693a7210ca83b5e84ff8f99f93eb119a8270d4ebb2c20e47bf25b8e730e0a
MD5 d6bb69c3cae8a947a4db4f4a1e468ddf
BLAKE2b-256 514790df1597bd6e64a97b25a128c83245a3004f14b9048002a711a493d202b1

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