Integrate Quill editor with Django project.
Project description
django-quill-editor
django-quill-editor makes Quill.js easy to use on Django Forms and admin sites
- No configuration required for static files!
- The entire code for inserting WYSIWYG editor is less than 30 lines
- It can be used in both admin and Django views
Setup
-
Install
django-quill-editor
to your Python environmentpip install django-quill-editor
-
Add
django_quill
toINSTALLED_APPS
insettings.py
# settings.py INSTALLED_APPS = [ 'django.contrib.admin', ... 'django_quill', ]
Run Sample project
# Clone repo, move to sample project git clone https://github.com/LeeHanYeong/django-quill-editor cd django-quill-editor/sample # Create virtualenv (I used pyenv, but you can use other methods) pyenv virtualenv 3.7.5 django-quill pyenv local django-quill # Install Python packages pip install -r requirements.txt python manage.py runserver
Usage
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()
1. Django admin
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
2. Form
-
Add
QuillFormField
to the Form class you want to use -
There are two ways to add CSS and JS files to a template.
-
If there is a Form with QuillField added, add
{{ form.media }}
to the<head>
tag.<head> {{ form.media }} </head>
-
Or, import CSS and JS files directly using
{% include %}
template tags.<head> <!-- django-quill-editor Media --> {% include 'django_quill/media.html' %} </head>
-
# forms.py from django import forms from django_quill.forms import QuillFormField class QuillFieldForm(forms.Form): content = QuillFormField()
# views.py from django.shortcuts import render from .forms import QuillFieldForm def form(request): return render(request, 'form.html', {'form': QuillFieldForm()})
<!-- Template --> <form action="" method="POST">{% csrf_token %} {{ form.content }} </form>
3. ModelForm
Just define and use ModelForm of Model class
# forms.py from django import forms from .models import QuillPost class QuillPostForm(forms.ModelForm): class Meta: model = QuillPost fields = ( 'content', )
# views.py from django.shortcuts import render from .forms import QuillPostForm def model_form(request): return render(request, 'model_form.html', {'form': QuillPostForm()})
<!-- Template --> <form action="" method="POST">{% csrf_token %} {{ form.content }} </form>
Form, ModelForm's Output:
Contributing
As an open source project, we welcome contributions. The code lives on GitHub
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for django-quill-editor-0.1.7.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8098d30f9cae187464b56ef82cd4683c8876d09d4efc54ca67ae4f92b4702901 |
|
MD5 | 725c087ca5d5d54e36800e174c71a58d |
|
BLAKE2-256 | fd20034316ccdd50be6c94ed9816668746d225e28b8967ced8635d8d8a709996 |
Hashes for django_quill_editor-0.1.7-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 61ff8bc322c0b5484c11cbd4bcd4f6a42088f67c93d6447fde24cc8ac378b421 |
|
MD5 | 81724fdcbdd7587e0eeb88c0a5369cea |
|
BLAKE2-256 | 2df47b93156dc2775be1edc35c975ed8a63db55c0e28a0eca90e5a16de25c304 |