{% extends "macros/base.html" %} {% from 'macros/modals.html' import alert_modal, rendicion_detail_modal, confirm_modal, edit_rendicion_modal %} {% block title %}Historial de Rendiciones{% endblock %} {% block head %} {% endblock %} {% block content %}
| Fecha | Trabajador | Módulo | Total Declarado | Gastos | Acciones |
|---|---|---|---|---|---|
| {{ r[1] }} | {{ r[2] }} | {{ r[3] }} | ${{ "{:,.0f}".format((r[4] or 0) + (r[5] or 0) + (r[6] or 0) + (r[7] or 0)).replace(',', '.') }} | ${{ "{:,.0f}".format(r[8] or 0).replace(',', '.') }} |
|
| Aún no hay rendiciones enviadas. | |||||