{% import "macros.html" as macros %} {% set title = titulo|default("Portal de Servicios - Cacao Accounting") %} {{ macros.headertags() }} {{ title }} {{ macros.cabecera() }}
{% 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 %} {% block contenido %} {% endblock %}