{% extends "base.html" %} {% block contenido %} {%- if TESTING -%}
{%- endif -%}{{ registro.code }}
{{ registro.name }}
{{ registro.comercial_name or '-' }}
{{ registro.fiscal_name or '-' }}
{{ registro.tax_id or '-' }}
{{ detail.group_label or '-' }}
| {{ _('Documento') }} | {{ _('Compañía') }} | {{ _('Fecha Corte') }} | {{ _('Creado En') }} | {{ _('Estado') }} | {{ _('Resultado') }} | {{ _('Respondiente / Comentario') }} |
|---|---|---|---|---|---|---|
| {{ conf.document_no or conf.id[:8].upper() }} | {{ conf.company }} | {{ conf.cutoff_date.strftime('%d/%m/%Y') if conf.cutoff_date else '-' }} | {{ conf.created_at.strftime('%d/%m/%Y %H:%M') if conf.created_at else '-' }} | {% if conf.status == 'confirmed' %} {{ _('Confirmada') }} {% elif conf.status == 'disputed' %} {{ _('Disputada') }} {% elif conf.status == 'sent' %} {{ _('Enviada') }} {% elif conf.status == 'viewed' %} {{ _('Visualizada') }} {% elif conf.status == 'cancelled' %} {{ _('Cancelada') }} {% elif conf.status == 'expired' %} {{ _('Expirada') }} {% else %} {{ conf.status }} {% endif %} | {% if conf.response_type == 'confirmed' %} {{ _('Conciliado') }} {% elif conf.response_type == 'disputed' %} {{ _('No conciliado') }} {% else %} - {% endif %} |
{% if conf.respondent_email %}
{{ conf.respondent_first_name }} {{ conf.respondent_last_name }} ({{ conf.respondent_email }})
{% if conf.response_comment %}
{{ conf.response_comment }} {% endif %} {% else %} - {% endif %} |
| {{ _('No hay solicitudes de confirmación registradas para este cliente.') }} | ||||||