{% extends "base.html" %} {% block contenido %}
| {{ _('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) }} |