django-summernote
django-summernote copied to clipboard
Simply integrate Summernote editor with Django project.
This resolves a downstream issue where projects using "BigAutoField" as their default auto field, will generate an unwanted migration. The unwanted migration will switch the field from AutoField to BigAutoField....
The dropdowns in the toolbar of the the in place widget aren't working with Bootstrap 5. The issue is pretty straightforward, these buttons have an attribute called data-toggle which needs...
When using SummernoteInplaceWidget, on init, the `note-editable` height is computed by the function `recalcHeight` in `django_summernote/templates/django_summernote/widget_common.html`. However, in this function, the value returned by `e.find('.note-toolbar').outerHeight()` is incorrect (too big), which...
Hi, I was trying to add summernote to my django admin panel. but after adding it to a model field, in admin panel there is a big white area with...
plugin > https://epiksel.github.io/summernote-highlight/  
I found people had this problem in the very early time. Now I got same problem. I was trying to insert the pics into text box. Then it did show....
Aplicado ao #513 Ao aplicar a summernote, em apenas um ele informa um erro 'typeError at/'. ```clean() got na unexpected keyword argument 'style'``` para resolver este problemas removi a (styles=STYLES),...
I tried setting the widget attributes field but didn't work ```.py @admin.register(Us) class UsAdmin(SingletonModelAdmin, SummernoteModelAdmin): class Meta: model = Us widgets = { "text": SummernoteWidget( attrs={ "summernote": { "toolbar": [...
When using django-summernote to get rich text editor in admin interface, the editor does not follow size settings. In my app admin.py ` from .models import MyModel from django_summernote.admin import...
I am using the Summernote plugin for Django and my target is to allow users to upload media inside the server. At the moment files are organized (by default) in...