Django Summernote icons dont appear

I am working on a MAC and Windows for this issue. Summer note will not display icons in chrome or edge on either Mac or windows and deployed or locally. Everything works fine in safari and on my iPhone. I migrated and collected the static files and they showed up in my s3 bucket. Seems like everything is set up correctly since it does work.

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(),
                     
        }

template

        <div class="row">
            <div class="col">{{form.description.label}}<br/>{{form.description|safe}}</div>
        </div>
Back to Top