mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-09 03:16:25 +00:00
Add listings of articles to aff of all cotisations
This commit is contained in:
parent
a3f4deb145
commit
4f5bdc1d0b
1 changed files with 11 additions and 1 deletions
|
@ -59,7 +59,17 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
|||
{% for facture in facture_list %}
|
||||
<tr>
|
||||
<td><a href="{% url 'users:profil' userid=facture.user.id %}">{{ facture.user }}</a></td>
|
||||
<td>{{ facture.name }}</td>
|
||||
<td>
|
||||
<table class="table-striped">
|
||||
{% for article in facture.name_detailed %}
|
||||
<tr>
|
||||
<td>
|
||||
{{ article }}
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
</td>
|
||||
<td>{{ facture.prix_total }}</td>
|
||||
<td>{{ facture.paiement }}</td>
|
||||
<td>{{ facture.date }}</td>
|
||||
|
|
Loading…
Reference in a new issue