24 lines
684 B
HTML
24 lines
684 B
HTML
<h3> Credito do Prof. </h3>
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Banco</th>
|
|
<th>Total</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for name, value in total_credit_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_credit_prof.sum_all |floatformat:2 }}
|
|
|