From 2de00bc77fca6a60cc60d421d3e43332acf19381 Mon Sep 17 00:00:00 2001 From: Shiro-Nek0 Date: Sat, 21 Mar 2026 00:13:13 -0300 Subject: [PATCH] html a modal intento 1 --- templates/admin_rendiciones.html | 45 +++++++++++++++++++++++++++++--- templates/macros/modals.html | 23 ++++++++++++++++ 2 files changed, 65 insertions(+), 3 deletions(-) diff --git a/templates/admin_rendiciones.html b/templates/admin_rendiciones.html index 8fe7155..4bed7ca 100644 --- a/templates/admin_rendiciones.html +++ b/templates/admin_rendiciones.html @@ -1,15 +1,16 @@ {% extends "macros/base.html" %} - +{% from 'macros/modals.html' import view_rendicion_modal %} {% block title %}Historial de Rendiciones{% endblock %} {% block head %} - {% endblock %} {% block content %}

Historial de Rendiciones

+{{ view_rendicion_modal() }} +
@@ -34,7 +35,14 @@ {% else %} @@ -46,4 +54,35 @@
${{ "{:,.0f}".format(r[5]).replace(',', '.') }} ${{ "{:,.0f}".format(r[6]).replace(',', '.') }} - Ver Detalle +
+{% endblock %} + +{% block scripts %} + {% endblock %} \ No newline at end of file diff --git a/templates/macros/modals.html b/templates/macros/modals.html index b545312..bd2820e 100644 --- a/templates/macros/modals.html +++ b/templates/macros/modals.html @@ -115,4 +115,27 @@ +{% endmacro %} + +{% macro view_rendicion_modal() %} + {% endmacro %} \ No newline at end of file