{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% if category == 'success' %}
{{ message }}
{% elif category == 'error' %}
{{ message }}
{% endif %} {% endfor %} {% endif %} {% endwith %}

Expedientes Activos

Trazabilidad

{% if user_rol >= 3 %} {% endif %}
{% for c in conflictos %} {% if c.estado == 'Activo' %}
{% else %}
{% endif %}
{{ c.estado }} {{ c.fecha_creacion.strftime('%d/%m/%Y') }}

{{ c.titulo }}

{{ c.empresa_nombre }}

{% if c.estado == 'Activo' %}
Turno: {{ c.esperando_a }}
{% endif %}
@{{ c.responsable_nombre }}
{{ c.ambito }}
{% else %}

No hay expedientes activos asignados a tu usuario.

{% endfor %}
{% if user_rol >= 3 %} {% endif %}