Значки Django Summernote не отображаются
Я работаю над этой проблемой на MAC и Windows. Summer note не отображает значки в chrome или edge ни на Mac, ни на windows, ни в развернутом виде, ни локально. Все отлично работает в safari и на моем iPhone. Я мигрировал и собрал статические файлы, и они появились в моем ведре s3. Похоже, что все настроено правильно, так как все работает.
settings.py
INSTALLED_APPS = [
'django_summernote',
]
SUMMERNOTE_THEME = 'bs5'
SUMMERNOTE_CONFIG = {
'summernote': {
'width': '100%',
}
}
urls.py
urlpatterns = [
path('admin/', admin.site.urls),
path('summernote/', include('django_summernote.urls')),
]
forms.py
from django_summernote.widgets import SummernoteWidget, SummernoteInplaceWidget
class CreateVenueForm(ModelForm):
class Meta:
model = Venue
fields = ('name', 'address', 'city', 'state', 'zip', 'description',)
widgets = {
'name': forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'Gived your venue a title'}),
'address': forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'Number and Street name'}),
'city': forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'city'}),
'state': forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'Give your event a title'}),
'zip': forms.TextInput(attrs={'class': 'form-control', 'placeholder': 'Zip'}),
'description': SummernoteWidget(),
}
шаблон
<div class="row">
<div class="col">{{form.description.label}}<br/>{{form.description|safe}}</div>
</div>