Name | django-tinymce JSON |
Version |
4.1.0
JSON |
| download |
home_page | None |
Summary | A Django application that contains a widget to render a |
upload_time | 2024-06-21 07:07:03 |
maintainer | None |
docs_url | https://pythonhosted.org/django-tinymce/ |
author | None |
requires_python | >=3.8 |
license | MIT License |
keywords |
django
widget
tinymce
|
VCS |
|
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
django-tinymce
==============
**django-tinymce** is a Django application that contains a widget to render a form field as a TinyMCE editor.
It supports Python 3.8+ and Django 3.2 to 5.0. Using TinyMCE 6.8.4.
.. image:: https://jazzband.co/static/img/badge.svg
:target: https://jazzband.co/
:alt: Jazzband
.. image:: https://img.shields.io/pypi/v/django-tinymce.svg
:target: https://pypi.python.org/pypi/django-tinymce
.. image:: https://img.shields.io/pypi/pyversions/django-tinymce.svg
:target: https://pypi.python.org/pypi/django-tinymce
.. image:: https://img.shields.io/pypi/djversions/django-tinymce.svg
:target: https://pypi.org/project/django-tinymce/
.. image:: https://img.shields.io/pypi/dm/django-tinymce.svg
:target: https://pypi.python.org/pypi/django-tinymce
.. image:: https://github.com/jazzband/django-tinymce/workflows/Test/badge.svg
:target: https://github.com/jazzband/django-tinymce/actions
:alt: GitHub Actions
.. image:: https://codecov.io/gh/jazzband/django-tinymce/branch/master/graph/badge.svg
:target: https://codecov.io/gh/jazzband/django-tinymce
:alt: Code coverage
Quickstart
==========
Install django-tinymce:
.. code-block:: bash
$ pip install django-tinymce
Add tinymce to INSTALLED_APPS in settings.py for your project:
.. code-block:: python
INSTALLED_APPS = (
...
'tinymce',
)
Add tinymce.urls to urls.py for your project:
.. code-block:: python
urlpatterns = [
...
path('tinymce/', include('tinymce.urls')),
]
In your code:
.. code-block:: python
from django.db import models
from tinymce.models import HTMLField
class MyModel(models.Model):
...
content = HTMLField()
**django-tinymce** uses staticfiles so everything should work as expected, different use cases (like using widget instead of HTMLField) and other stuff is available in documentation.
Documentation
=============
https://django-tinymce.readthedocs.org/
Support and updates
===================
Use github issues https://github.com/jazzband/django-tinymce/issues
License
=======
Originally written by Joost Cassee.
This program is licensed under the MIT License (see LICENSE.txt)
Raw data
{
"_id": null,
"home_page": null,
"name": "django-tinymce",
"maintainer": null,
"docs_url": "https://pythonhosted.org/django-tinymce/",
"requires_python": ">=3.8",
"maintainer_email": "R\u00e9my Hubscher <hubscher.remy@gmail.com>, Claude Paroz <claude@2xlibre.net>",
"keywords": "django, widget, tinymce",
"author": null,
"author_email": "Aljosa Mohorovic <aljosa.mohorovic@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/b3/36/56faa2cb1bde28c66ffe38d67ddbacab9c416baecbb7dd911bfabc5fa409/django_tinymce-4.1.0.tar.gz",
"platform": null,
"description": "django-tinymce\n==============\n\n**django-tinymce** is a Django application that contains a widget to render a form field as a TinyMCE editor.\n\nIt supports Python 3.8+ and Django 3.2 to 5.0. Using TinyMCE 6.8.4.\n\n.. image:: https://jazzband.co/static/img/badge.svg\n :target: https://jazzband.co/\n :alt: Jazzband\n\n.. image:: https://img.shields.io/pypi/v/django-tinymce.svg\n :target: https://pypi.python.org/pypi/django-tinymce\n\n.. image:: https://img.shields.io/pypi/pyversions/django-tinymce.svg\n :target: https://pypi.python.org/pypi/django-tinymce\n\n.. image:: https://img.shields.io/pypi/djversions/django-tinymce.svg\n :target: https://pypi.org/project/django-tinymce/\n\n.. image:: https://img.shields.io/pypi/dm/django-tinymce.svg\n :target: https://pypi.python.org/pypi/django-tinymce\n\n.. image:: https://github.com/jazzband/django-tinymce/workflows/Test/badge.svg\n :target: https://github.com/jazzband/django-tinymce/actions\n :alt: GitHub Actions\n\n.. image:: https://codecov.io/gh/jazzband/django-tinymce/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/jazzband/django-tinymce\n :alt: Code coverage\n\n\nQuickstart\n==========\n\nInstall django-tinymce:\n\n.. code-block:: bash\n\n $ pip install django-tinymce\n\nAdd tinymce to INSTALLED_APPS in settings.py for your project:\n\n.. code-block:: python\n\n INSTALLED_APPS = (\n ...\n 'tinymce',\n )\n\nAdd tinymce.urls to urls.py for your project:\n\n.. code-block:: python\n\n urlpatterns = [\n ...\n path('tinymce/', include('tinymce.urls')),\n ]\n\nIn your code:\n\n.. code-block:: python\n\n from django.db import models\n from tinymce.models import HTMLField\n\n class MyModel(models.Model):\n ...\n content = HTMLField()\n\n**django-tinymce** uses staticfiles so everything should work as expected, different use cases (like using widget instead of HTMLField) and other stuff is available in documentation.\n\nDocumentation\n=============\n\nhttps://django-tinymce.readthedocs.org/\n\nSupport and updates\n===================\n\nUse github issues https://github.com/jazzband/django-tinymce/issues\n\nLicense\n=======\n\nOriginally written by Joost Cassee.\n\nThis program is licensed under the MIT License (see LICENSE.txt)\n",
"bugtrack_url": null,
"license": "MIT License",
"summary": "A Django application that contains a widget to render a",
"version": "4.1.0",
"project_urls": {
"Changelog": "https://github.com/jazzband/django-tinymce/blob/master/CHANGELOG.rst",
"Documentation": "https://django-tinymce.readthedocs.org/",
"Homepage": "https://github.com/jazzband/django-tinymce"
},
"split_keywords": [
"django",
" widget",
" tinymce"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "91a6467464d08495360689380906db8e67427c381545ce8af9ce633e0128b004",
"md5": "995a9e2d057950fdb1f3c68029103b34",
"sha256": "9804836e6d2b08de3b03a27c100f8c2e9633549913eff8b323678a10cd48b94e"
},
"downloads": -1,
"filename": "django_tinymce-4.1.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "995a9e2d057950fdb1f3c68029103b34",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 1317923,
"upload_time": "2024-06-21T07:07:40",
"upload_time_iso_8601": "2024-06-21T07:07:40.454318Z",
"url": "https://files.pythonhosted.org/packages/91/a6/467464d08495360689380906db8e67427c381545ce8af9ce633e0128b004/django_tinymce-4.1.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b33656faa2cb1bde28c66ffe38d67ddbacab9c416baecbb7dd911bfabc5fa409",
"md5": "28d6d14fc86d7b5bfc1bb632fd85a032",
"sha256": "02e3b70e940fd299f0fbef4315aee5c185664e1eb8cd396b176963954e4357c9"
},
"downloads": -1,
"filename": "django_tinymce-4.1.0.tar.gz",
"has_sig": false,
"md5_digest": "28d6d14fc86d7b5bfc1bb632fd85a032",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 1087250,
"upload_time": "2024-06-21T07:07:03",
"upload_time_iso_8601": "2024-06-21T07:07:03.915217Z",
"url": "https://files.pythonhosted.org/packages/b3/36/56faa2cb1bde28c66ffe38d67ddbacab9c416baecbb7dd911bfabc5fa409/django_tinymce-4.1.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-06-21 07:07:03",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "jazzband",
"github_project": "django-tinymce",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"tox": true,
"lcname": "django-tinymce"
}