{#- SPDX-License-Identifier: Apache-2.0 SPDX-FileCopyrightText: 2025 - 2026 BMO Soluciones, S.A. -#} {% extends 'base.html' %} {% from 'macros.html' import render_pagination %} {% block content %}

{{ _('Monedas') }}

{{ _('Nueva Moneda') }}
{{ _('Filtros') }}
{{ _('Limpiar') }}
{% for currency in currencies %} {% else %} {% endfor %}
{{ _('Código') }} {{ _('Nombre') }} {{ _('Símbolo') }} {{ _('Estado') }} {{ _('Acciones') }}
{{ currency.codigo }} {{ currency.nombre }} {{ currency.simbolo or '-' }} {% if currency.activo %} {{ _('Activo') }} {% else %} {{ _('Inactivo') }} {% endif %}
{{ _('No hay monedas registradas.') }}
{{ render_pagination(pagination, 'currency.index') }}
{% endblock %}