Files
CenterPes/Base/templates/Login/DashboardAdmin/total_prof_month.html
2025-11-01 18:10:39 -03:00

21 lines
588 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.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>