{% load static i18n l10n fontawesome_5 bootstrap4 %} {{ tab_title }} {% bootstrap_css %} {% bootstrap_javascript jquery='full' %} {% fontawesome_5_static %} {% comment %} Adds script for modal rendering. Script depends on Jquery, therefore it needs to be loaded afterwards. {% endcomment %} {% block head %} {% endblock %}
{% block header %} {% include 'navbars/navbar.html' %} {% endblock %}
{% for message in messages %}
{% if "danger" in message.tags %} {% fa5_icon 'exclamation' %} {% elif "info" in message.tags %} {% fa5_icon 'info' %} {% elif "success" in message.tags %} {% fa5_icon 'check' %} {% endif %} {{ message }}
{% endfor %}
{% comment %} The modal wrapper, which can be used on every view can stay on the base.html template {% endcomment %} {% block body %} {% endblock %}
{% block footer %} {% include 'footer.html' %} {% endblock %}