23 lines
597 B
HTML
23 lines
597 B
HTML
<h3> Estoque </h3>
|
|
<div class="row">
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Produtos</th>
|
|
<th>Total</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for Prod, sum in Stone.Stone.items %}
|
|
{% if sum != 0 %}
|
|
<tr class="table table-striped" >
|
|
<td>{{ Prod }}</td>
|
|
<td>{{ sum|floatformat:0 }}</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% empty %} <tr> <td colspan="2"> Vazio. </td> </tr> {% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<br> |