refactored invoice view and template

This commit is contained in:
Kenneth SOARES
2025-06-02 16:50:46 +02:00
parent 95b4b0ba03
commit 6803294358
2 changed files with 17 additions and 25 deletions

View File

@ -27,7 +27,7 @@
{% for i in sums %}
<tr>
<td>{{ i['club__name'] }}</td>
<td>{{ i['selling_sum'] }} €</td>
<td>{{"%.2f"|format(i['selling_sum'])}} €</td>
</tr>
{% endfor %}
</tbody>
@ -35,4 +35,3 @@
{% endblock %}