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