{% extends "base.html" %} {% block contenido %} {% import "macros.html" as macros %} {%- if TESTING -%}
{%- endif -%}
{{ _('Cajas Chicas') }}
{{ _('Nuevo') }}
{% for item in registros -%} {%- else %} {%- endfor %}
{{ _('Listado de cajas chicas.') }}
{{ _('Caja') }} {{ _('Responsable') }} {{ _('Fondo') }} {{ _('Moneda') }} {{ _('Saldo contable') }} {{ _('Efectivo esperado') }} {{ _('Vales abiertos') }} {{ _('Pendiente de reposición') }} {{ _('Estado') }}
{{ item.name }} {% if item.is_default %}{{ _('Predeterminada') }}{% endif %} {{ responsables.get(item.custodian_id) or item.custodian_id or '-' }} {{ item.float_amount }} {{ item.currency or '-' }} {{ saldos.get(item.id, 0) }} {{ saldos.get(item.id, 0) - vales_abiertos.get(item.id, 0) }} {{ vales_abiertos.get(item.id, 0) }} {{ pendientes.get(item.id, 0) }} {% if item.is_active %} {{ _('Activa') }} {% else %} {{ _('Inactiva') }} {% endif %}
{{ _('No hay cajas chicas registradas.') }}
{% endblock %}