invoice call form

This commit is contained in:
Kenneth SOARES
2025-06-16 19:20:28 +02:00
parent 6608dac4d3
commit 481c46e367
4 changed files with 63 additions and 12 deletions

View File

@ -29,12 +29,12 @@
<td>{% trans %}Validated{% endtrans %}</td>
</thead>
<tbody>
{% for i in sums %}
{% for data in club_data %}
<tr>
<td>{{ i['club__name'] }}</td>
<td>{{"%.2f"|format(i['selling_sum'])}} €</td>
<td>{{ data.club.name }}</td>
<td>{{"%.2f"|format(data.sum)}} €</td>
<td>
<input type="checkbox" name="validate_{{ i['club__name'] }}" {% if validated[i['club__name']] %}checked{% endif %}>
{{ form[form.get_club_name(data.club.id)] }}
</td>
</tr>
{% endfor %}