mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-13 05:16:27 +00:00
15 lines
511 B
HTML
15 lines
511 B
HTML
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Banque</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{% for banque in banque_list %}
|
|
<tr>
|
|
<td>{{ banque.name }}</td>
|
|
<td>{% if is_trez %}<a class="btn btn-primary btn-sm" role="button" href="{% url 'cotisations:edit-banque' banque.id %}"><i class="glyphicon glyphicon-pushpin"></i> Editer</a>{% endif %}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|