lhy
lhy
Try it instead with ```from django_quill import forms```
This project did not consider DRF, but you can write separate javascript code and convert it to the data format sent by DRF. I'm still working on resolving this issue.
That's a long-term plan for the 1.0 release. 😅 I know storing images in a DB is a bad design, but in this project, beginners using Django focused more on...
After resolving issue #7, I will implement a function to insert custom JS.
> Can we crop the image that we uploaded?? > And reduce the size...?? Unfortunately, the crop function is not provided by [Quill.js](https://quilljs.com/). Resizing isn't handled by [Quill.js](https://quilljs.com/), and I'm...
What is the API sending? Please tell me the data you are sending. django-quill-editor internally edits and sends the data of Quill.js. You can check this in `django_quill/static/django_quill/django_quill.js` ``` var...
I haven't tested it yet, but if you use a form made with django-quill-editor, there is a way to do it. If the field name is `content`, there is a...
I know that the migration function of the existing TextField model is needed, but I haven't implemented it yet. When a feature is added, we will let you know in...
@MurphyAdam @inlinesoftware A migration command has been added to the already used CharField or TextField. ``` python manage.py convert_to_quill {app_name} {model_name} {field_name} ``` https://django-quill-editor.readthedocs.io/en/latest/pages/migrating-to-quillfield.html
Thank you for using this library :) Converting HTML to delta is handled by the Quill.js library, not this Python library. (If Django passes an HTML string to the JS...