{% extends "base.html" %} {% block contenido %} {%- if TESTING -%}
{%- endif -%}
{{ _('Vales de Caja Chica') }}
{{ _('Nuevo') }}
{% for item in registros -%} {%- else %} {%- endfor %}
{{ _('Listado de vales de caja chica.') }}
{{ _('Vale') }} {{ _('Fecha') }} {{ _('Entregado a') }} {{ _('Concepto') }} {{ _('Importe') }} {{ _('Moneda') }} {{ _('Estado') }} {{ _('Acciones') }}
{{ item.voucher_no or item.document_no or item.id }} {{ item.posting_date or '-' }} {{ item.delivered_to or '-' }} {{ item.concept }} {{ item.amount }} {{ item.transaction_currency or '-' }} {% if item.voucher_status == 'entregado' %} {{ _('Entregado') }} {% elif item.voucher_status == 'liquidado' %} {{ _('Liquidado') }} {% elif item.voucher_status == 'cancelado' %} {{ _('Cancelado') }} {% else %} {{ _('Borrador') }} {% endif %} {% if item.voucher_status == 'borrador' %} {{ _('Editar') }}
{% elif item.voucher_status == 'entregado' %} {{ _('Liquidar') }} {% endif %} {% if item.voucher_status in ('borrador', 'entregado') %}
{% endif %}
{{ _('No hay vales de caja chica registrados.') }}
{% endblock %}