Django template tags and filters for Bootstrap 5 integration. Version 1.0.11, released Mar 2023. Low maintenance cadence; supports Bootstrap 5.0–5.3.
pip install django-bootstrap-v5Verified import paths — ran on the pinned version, not inferred.
Add 'django_bootstrap5' to INSTALLED_APPS, then use template tags to render Bootstrap 5 forms and buttons.
Replace {% load bootstrap5 %} with {% load django_bootstrap5 %} in all templates.Use the 'required' and 'disabled' arguments in form field configuration or Bootstrap form rendering.
Add Bootstrap 5 CSS/JS via CDN or static files in your base HTML (e.g., <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">).
Ensure SECRET_KEY is set in settings.py.