django-summernote
django-summernote copied to clipboard
Simply integrate Summernote editor with Django project.
``` 1 from . import views ~ 2 from django.conf import settings + 3 from django.urls import path, include + 4 from django.conf.urls.static import static + 5 6 7 app_name...
How can i disable attachments? i tried to change my configuration in settings.py but i got this error: Reverse for 'django_summernote-upload_attachment' not found. 'django_summernote-upload_attachment' is not a valid view function...
When selecting a local image, it tries to upload the image, I want it to convert to base64 like the default summernote feature.
https://docs.djangoproject.com/en/3.2/releases/3.2/#customizing-type-of-auto-created-primary-keys
First of all, thanks to contribute to the world with this application. I was testing my Django website and as I use django-summernote I performed some tests against the public...
Hi, when trying to sanitize input, on a SummerNoteInPlaceWidget introduced on a form, if I use a SummernoteTextField in my model, the form displayed starts requiring an iframe. This is...
I'm getting an error after installing from `requirements.txt` using `pip install -r requirements.txt` ``` Collecting django-summernote=0.8 Using cached django-summernote-0.8.20.0.tar.gz (288 kB) Preparing metadata (setup.py) ... error ERROR: Command errored out...
I tried almost any possible solution [going through this](https://github.com/summernote/summernote/issues/303#issuecomment-229823549) and nothing worked so far. I need to get raw text from anything you paste to the summernote widget (iframe) so...
First of all, thanks for making an easy Django+Summernote integration happen! I've spent several hours today trying to set up the Summernote widget on the admin site *without using iframes*....