django-quill-editor
django-quill-editor copied to clipboard
Embedded Images should be stored separately as files not ony embedded in the DB
Is this something that is planned to support?
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 making the output easier.
I solved this in a project by extracting them from the content and storing them as Django Files AFTER the upload. I can share code (or try to prepare a PR) if you like?
I solved this in a project by extracting them from the content and storing them as Django Files AFTER the upload. I can share code (or try to prepare a PR) if you like?
Could you share your code in a repo? I need it.