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

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.6-3.9
  • Django: 2.2-3.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-6.1.2.tar.gz (11.3 kB view details)

Uploaded Source

Built Distribution

django_tinymce4_widget-6.1.2-py3-none-any.whl (10.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: django-tinymce4-widget-6.1.2.tar.gz
  • Upload date:
  • Size: 11.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for django-tinymce4-widget-6.1.2.tar.gz
Algorithm Hash digest
SHA256 62294794b7a88b510cbe8ff777dd0cd0f74d853aaba39d832744f43357bb8d5d
MD5 e3482f5f823c4508173d2ecdb88b064c
BLAKE2b-256 30f71b3fc91976d62947de79c42ee0e9b1bf3bcea63ba67b15077fbb1737005e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: django_tinymce4_widget-6.1.2-py3-none-any.whl
  • Upload date:
  • Size: 10.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.10.0 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.7.10

File hashes

Hashes for django_tinymce4_widget-6.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 79564aac1a6c935b450ae37bfbd4d3b4a18e1bee4b31df9650797fbcd7098fc0
MD5 341087db946d7255b66280baf9aab64f
BLAKE2b-256 2ecc43225694acc477e3fa76801c523deff1dd48be4ddb91b55129ee84b7d68b

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