Integrates the Quill rich text editor into Django projects. Current version 0.1.42, release cadence is irregular. Provides a model field and form field for Quill content.
pip install django-quill-editorNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Add 'django_quill' to INSTALLED_APPS, define a model with QuillField, and access HTML via .html attribute.
Migrate old JSON data to HTML format using a data migration.
Use 'QuillWidget' from django_quill.widgets instead.
Use .html attribute to get HTML or .quill_data to get the raw stored string.
Run 'python manage.py collectstatic' and configure static file serving.
Use 'from django_quill.fields import QuillField'.
Use '.html' to get HTML content.
Add 'django_quill' to INSTALLED_APPS.