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

22 lines
656 B
HTML

<h3> Prof. </h3>
<table class="table">
<thead>
<tr>
<th>Prof.</th>
<th>Total</th>
</tr>
</thead>
<tbody>
{% for name, value in total_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 Prof. R$ {{ total_prof.sum_all |floatformat:2 }}