{% extends "base.html" %} {% block contenido %}
{{ party.name }}
{{ company.company_name if company else confirmation.company }}
{{ confirmation.cutoff_date.strftime('%d/%m/%Y') }}
{{ confirmation.created.strftime('%d/%m/%Y %H:%M') }}
{{ confirmation.expires_at.strftime('%d/%m/%Y %H:%M') if confirmation.expires_at else '-' }}
{{ _('Conciliado') if confirmation.status == 'confirmed' else _('No conciliado') }}
{{ confirmation.respondent_first_name }} {{ confirmation.respondent_last_name }} ({{ confirmation.respondent_email }})
{{ confirmation.responded_at.strftime('%d/%m/%Y %H:%M:%S UTC') }}
{{ confirmation.respondent_ip }}
{{ confirmation.respondent_user_agent }}
"{{ confirmation.response_comment }}"
{{ confirmation.snapshot_hash }}
| {{ _('Documento') }} | {{ _('Referencia') }} | {{ _('Fecha') }} | {{ _('Vencimiento') }} | {{ _('Moneda') }} | {{ _('Importe Original') }} | {{ _('Saldo Pendiente') }} |
|---|---|---|---|---|---|---|
| {{ item.document_type }} | {{ item.document_no }} | {{ item.document_date if item.document_date else '-' }} | {{ item.due_date if item.due_date else '-' }} | {{ item.currency }} | {{ "{:,.2f}".format(item.original_amount|float) }} | {{ "{:,.2f}".format(item.outstanding_amount|float) }} |
{{ _('El snapshot no contiene partidas abiertas.') }}
{% endif %}{{ _('Enviado:') }} {{ inv.sent_at.strftime('%d/%m/%Y %H:%M') }}
{% endif %} {% if inv.last_access_at %}{{ _('Último acceso:') }} {{ inv.last_access_at.strftime('%d/%m/%Y %H:%M') }}
{% endif %} {% if inv.failed_attempts > 0 %}{{ _('Intentos fallidos:') }} {{ inv.failed_attempts }}
{% endif %}{% if log.event.action == 'balance_confirmation_created' %} {{ _('Creación Borrador') }} {% elif log.event.action == 'balance_confirmation_sent' %} {{ _('Enviada por Correo') }} {% elif log.event.action == 'balance_confirmation_resent' %} {{ _('Reenviada') }} {% elif log.event.action == 'balance_confirmation_viewed' %} {{ _('Visualizada') }} {% elif log.event.action == 'balance_confirmation_verified' %} {{ _('Identidad Verificada') }} {% elif log.event.action == 'balance_confirmation_confirmed' %} {{ _('Saldo Confirmado/Conciliado') }} {% elif log.event.action == 'balance_confirmation_disputed' %} {{ _('Saldo Disputado') }} {% elif log.event.action == 'balance_confirmation_cancelled' %} {{ _('Cancelada') }} {% else %} {{ log.event.action }} {% endif %}
{% if log.event.comment %}{{ log.event.comment }}
{% endif %}