Skip to content
Snippets Groups Projects
  • Benjamin Hättasch's avatar
    347a93f4
    Upgrade to (django) bootstrap 5 · 347a93f4
    Benjamin Hättasch authored
    Bump django-bootstrap to version 5
    Exchange bootstrap files (js & css)
    Adapt settings
    Migrate to new version/resolve breaking changes
    Move layout adaptions previously included in bootstrap.css into custom.css
    347a93f4
    History
    Upgrade to (django) bootstrap 5
    Benjamin Hättasch authored
    Bump django-bootstrap to version 5
    Exchange bootstrap files (js & css)
    Adapt settings
    Migrate to new version/resolve breaking changes
    Move layout adaptions previously included in bootstrap.css into custom.css
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
messages.html 327 B
{% load tags_AKModel %}

{% if messages %}
    {% for message in messages %}
    <div class="alert alert-dismissible {{ message.tags | message_bootstrap_class }}">
        <button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
        {{ message }}
    </div>
    {% endfor %}
{% endif %}