{% import "macros.html" as macros %} {% set title = titulo|default("Cacao Accounting") %} {{ macros.headertags() }} {{ title }} {{ macros.cabecera() }} {{ macros.barralateral() }} {%- if TESTING -%} {%- endif -%}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %} {% set alert_class = 'alert-info' %} {% if category == 'success' %} {% set alert_class = 'alert-success' %} {% elif category == 'warning' %} {% set alert_class = 'alert-warning' %} {% elif category == 'danger' %} {% set alert_class = 'alert-danger' %} {% endif %} {% endfor %}
{% endif %} {% endwith %} {%- if TESTING-%} {% block test %} {% endblock %} {%- endif -%} {% block contenido %} {% endblock %}