mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 19:33:11 +00:00
24 lines
877 B
HTML
24 lines
877 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 class="text-right">
|
|
{% if is_trez %}
|
|
<a class="btn btn-primary btn-sm" role="button" title="Éditer" href="{% url 'cotisations:edit-paiement' paiement.id %}">
|
|
<i class="glyphicon glyphicon-edit"></i>
|
|
</a>
|
|
{% endif %}
|
|
<a class="btn btn-info btn-sm" role="button" title="Historique" href="{% url 'cotisations:history' 'paiement' paiement.id %}">
|
|
<i class="glyphicon glyphicon-time"></i>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|