django-quill
django-quill copied to clipboard
Easily use Quill.js in your django admin.
django-quill
Easily use Quill.js in your django admin.
This project is heavily inspired by django-ckeditor.
Requires django 1.7.

Quick start
-
Install the package from pypi
pip install django-quill -
Add "quill" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = ( ... 'quill', )
Usage
from django.db import models
from quill.fields import RichTextField
class MyModel(models.Model):
content = RichTextField()
content2 = RichTextField(config='basic')
If you want to support image uploads, your admin needs to extend from quill.admin.QuillAdmin:
from quill.admin import QuillAdmin
class MyAdmin(QuillAdmin):
pass
Customizing
To customize this app, extend apps.QuillConfig and modify whatever you need. For example, to add a new toolbar:
from quill.apps import QuillConfig
class MyQuillConfig(QuillConfig):
my_toolbar = dict(full, toolbar_template='quill/toolbars/my_toolbar.html')
To customize the extensions of the images that can be uploaded:
from quill.apps import QuillConfig
class MyQuillConfig(QuillConfig):
allowed_image_extensions = ['jpeg', 'gif']
If you need to call other methods or perform additional actions on the quill editors, they will be available in window.DjangoQuillEditors.
Provided Toolbars
There are two toolbars that come with this package:
- Full (default): Provides basic font style and size selection, bold, italics, underline, strikethrough, text color, background color, lists, links, and images.
- Basic: Provides bold, italic, underline, lists, and links.
Development
There are several dependencies on npm that are required before building django-quill:
$ npm install
Auto Compile JS
$ make watch
Running Tests
$ make test
Building JS
$ make build
TODO
- Better documentation.
- More tests.
- Better support for using outside of the admin.