{% extends "base.html" %} {% block contenido %} {%- if TESTING -%}
{%- endif -%}
{{ registro.name }} {% if registro.is_default %}{{ _('Predeterminada') }}{% endif %} {% if registro.is_active %}{{ _('Activa') }}{% else %}{{ _('Inactiva') }}{% endif %}
{% if not registro.is_default %}
{% endif %} {{ _('Editar') }} {{ _('Listado') }}

{{ registro.company or '-' }}

{{ cuenta.code ~ ' - ' ~ cuenta.name if cuenta else '-' }}

{{ registro.currency or '-' }}

{{ (responsable.name or responsable.user) if responsable else '-' }}

{{ registro.float_amount }}

{{ saldo }}

{{ saldo - vales_abiertos }}

{{ vales_abiertos }}

{{ pendiente_reposicion }}

{% if registro.notes %}

{{ registro.notes }}

{% endif %}
{% endblock %}