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.7-3.10
  • Django: 2.2-4.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

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

Uploaded Source

Built Distribution

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

Uploaded Python 3

File details

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

File metadata

  • Download URL: django-tinymce4-widget-6.3.3.tar.gz
  • Upload date:
  • Size: 11.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/35.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.64.0 importlib-metadata/4.11.4 keyring/23.5.1 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for django-tinymce4-widget-6.3.3.tar.gz
Algorithm Hash digest
SHA256 6f6d84259dfc264668d37ab3a1c65384bd7e296da3875f1412d8a077144cb422
MD5 4784b15fcc074f126d95506a09724659
BLAKE2b-256 0baaf80649a23a01651a83ef79e4680e83ca7b2b1a2a48ef3e07cf8f0439c30e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: django_tinymce4_widget-6.3.3-py3-none-any.whl
  • Upload date:
  • Size: 10.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/35.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.64.0 importlib-metadata/4.11.4 keyring/23.5.1 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.13

File hashes

Hashes for django_tinymce4_widget-6.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 2c0becfb62a5544043f876d2afb9bf42d43413b0e33164a1ec752072b2abb18c
MD5 b781eafbc03f164b998d66c0ec4bdde2
BLAKE2b-256 8b26a78539a5a0d798b4702a11cf784447a5f7a90f774cd729734af56cb6bf09

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