You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using locally hosted CSS and Javascript files, served through the regular staticfiles app. Unfortunately, django-bootstrap5 does not seem to support this due to the custom tag logic:
I am using locally hosted CSS and Javascript files, served through the regular
staticfiles
app. Unfortunately,django-bootstrap5
does not seem to support this due to the custom tag logic:django-bootstrap5/src/django_bootstrap5/templatetags/django_bootstrap5.py
Lines 157 to 220 in 0729e52
The corresponding implementation at https://github.com/zostera/django-bootstrap5/blob/main/src/django_bootstrap5/html.py does not seem to work well with https://docs.djangoproject.com/en/5.0/ref/contrib/staticfiles/#manifeststaticfilesstorage as the hash is not really known when evaluating the settings. For this reason, I either have to use my own logic/template tags or monkey-patch the
render_tag
function, which both does not feel right.The text was updated successfully, but these errors were encountered: