Files
CenterPes/Base/templates/Dashboards/DashboardAdmin/total_expense_prof.html
2026-01-02 09:19:43 -03:00

22 lines
681 B
HTML

<h3> Despesas Prof </h3>
<table class="table">
<thead>
<tr>
<th>Banco</th>
<th>Total</th>
</tr>
</thead>
<tbody>
{% for name, value in total_expense_prof.sum_total.items %}
<tr class="table table-striped" >
<td>{{ name }}</td>
<td>R$ {{ value|floatformat:2 }}</td>
</tr>
{% empty %}
<tr>
<td colspan="2"> Vazio. </td>
</tr>
{% endfor %}
</tbody>
</table>
Todos os bancos R$ {{ total_expense_prof.sum_all |floatformat:2 }}