mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-27 07:02:26 +00:00
15 lines
533 B
HTML
15 lines
533 B
HTML
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Moyen de paiement</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{% for paiement in paiement_list %}
|
|
<tr>
|
|
<td>{{ paiement.moyen }}</td>
|
|
<td>{% if is_trez %}<a class="btn btn-primary btn-sm" role="button" href="{% url 'cotisations:edit-paiement' paiement.id %}"><i class="glyphicon glyphicon-pushpin"></i> Editer</a>{% endif %}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|