8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-18 08:38:09 +00:00
re2o/cotisations/templates/cotisations/aff_article.html

31 lines
1.1 KiB
HTML
Raw Normal View History

<table class="table table-striped">
<thead>
<tr>
2016-11-18 10:53:10 +00:00
<th>Article</th>
<th>Prix</th>
<th>Cotisation</th>
2016-11-18 10:53:10 +00:00
<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>
2016-11-18 10:53:10 +00:00
<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>