mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2025-01-30 03:54:21 +00:00
30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Article</th>
|
|
<th>Prix</th>
|
|
<th>Cotisation</th>
|
|
<th>Durée (mois)</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{% for article in article_list %}
|
|
<tr>
|
|
<td>{{ article.name }}</td>
|
|
<td>{{ article.prix }}</td>
|
|
<td>{{ article.cotisation }}</td>
|
|
<td>{{ article.duration }}</td>
|
|
<td class="text-right">
|
|
{% if is_trez %}
|
|
<a class="btn btn-primary btn-sm" role="button" title="Éditer" href="{% url 'cotisations:edit-article' article.id %}">
|
|
<i class="glyphicon glyphicon-edit"></i>
|
|
</a>
|
|
{% endif %}
|
|
<a class="btn btn-info btn-sm" role="button" title="Historique" href="{% url 'cotisations:history' 'article' article.id %}">
|
|
<i class="glyphicon glyphicon-time"></i>
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|