Using in Django adminΒΆ

Add QuillField to the Model class you want to use

# models.py
from django.db import models
from django_quill.fields import QuillField

class QuillPost(models.Model):
    content = QuillField()

Just register the Model in admin.py of the app

from django.contrib import admin
from .models import QuillPost

@admin.register(QuillPost)
class QuillPostAdmin(admin.ModelAdmin):
    pass

https://raw.githubusercontent.com/LeeHanYeong/django-quill-editor/master/_assets/admin-sample.pngadmin-sample