{% extends "base.html" %} {% block contenido %} {% import "macros.html" as macros %} {% if TESTING %}
{% endif %}| {{ _("Fecha") }} | {{ _("Destinatario") }} | {{ _("Asunto") }} | {{ _("Documento") }} | {{ _("Estado") }} | {{ _("Intentos") }} | {{ _("Detalles / Error") }} | {{ _("Acciones") }} |
|---|---|---|---|---|---|---|---|
| {{ item.created.strftime('%Y-%m-%d %H:%M') if item.created else '-' }} | {{ item.recipient }} | {{ item.subject }} | {% if item.document_type and item.document_id %} {{ item.document_type }}: {{ item.document_id }} {% else %} - {% endif %} | {% if item.status == 'sent' %} {{ _("Enviado") }} {% elif item.status == 'failed' %} {{ _("Fallido") }} {% else %} {{ _("Pendiente") }} {% endif %} | {{ item.attempts or 0 }} | {% if item.status == 'failed' or item.status == 'pending' %} {% else %} {% endif %} | |
| {{ _("No hay registros de correos electrónicos en la bitácora.") }} | |||||||