{#- 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 %}

{{ _('Empresas') }}

{{ _('Nueva Empresa') }}
{{ _('Filtros') }}
{{ _('Limpiar') }}
{% for empresa in empresas %} {% else %} {% endfor %}
{{ _('Código') }} {{ _('Razón Social') }} {{ _('Nombre Comercial') }} {{ _('RUC') }} {{ _('Estado') }} {{ _('Acciones') }}
{{ empresa.codigo }} {{ empresa.razon_social }} {{ empresa.nombre_comercial or '-' }} {{ empresa.ruc }} {% if empresa.activo %} {{ _('Activa') }} {% else %} {{ _('Inactiva') }} {% endif %}
{{ _('No hay empresas registradas.') }}
{{ render_pagination(pagination, 'empresa.index') }}
{% endblock %}