25 lines
689 B
HTML
25 lines
689 B
HTML
<h3> Professional </h3>
|
|
<div class="row">
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Banco</th>
|
|
<th>Total</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for Prof, sum in Professional.professional.items %}
|
|
{% if sum != 0 %}
|
|
<tr class="table table-striped" >
|
|
<td>{{ Prof }}</td>
|
|
<td>R$ {{ sum|floatformat:2 }}</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% empty %} <tr> <td colspan="2"> Vazio. </td> </tr> {% endfor %}
|
|
</tbody>
|
|
</table>
|
|
<p> Total : R$: {{ Professional.sum_all_prof|floatformat:2 }}</p>
|
|
</div>
|
|
|
|
<br>
|