{% extends "macros/base.html" %} {% from "macros/modals.html" import reportes_menu_modal %} {% block title %}Panel de Reportes{% endblock %} {% block content %}

Panel de Reportes

Selecciona un módulo para ver sus reportes disponibles.

{% for zona_name, lista_modulos in modulos|groupby(2) %}

Zona: {{ zona_name }}

{% for mod in lista_modulos %} {% endfor %}
{% else %}
No hay módulos registrados en el sistema.
{% endfor %} {% for zona_name, lista_modulos in modulos|groupby(2) %} {% for mod in lista_modulos %} {{ reportes_menu_modal(mod[0], mod[1]) }} {% endfor %} {% endfor %} {% endblock %}