{#- SPDX-License-Identifier: Apache-2.0 SPDX-FileCopyrightText: 2025 - 2026 BMO Soluciones, S.A. -#} {% extends "base.html" %} {% from "macros.html" import render_pagination %} {% block title %}{{ _('Administración de Reportes') }}{% endblock %} {% block content %}
| {{ _('Nombre') }} | {{ _('Tipo') }} | {{ _('Categoría') }} | {{ _('Base') }} | {{ _('Estado') }} | {{ _('Acciones') }} |
|---|---|---|---|---|---|
|
{{ report.name }}
{{ report.description or _('Sin descripción') }} |
{{ _('Sistema') if report.type == 'system' else _('Personalizado') }} | {{ report.category|capitalize if report.category else '-' }} | {{ report.base_entity }} | {{ _('Habilitado') if report.status == 'enabled' else _('Deshabilitado') }} | |
| {{ _('No hay reportes disponibles.') }} | |||||