mirror of https://gitlab.federez.net/re2o/re2o
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
899 B
25 lines
899 B
<table class="table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>Utilisateur</th>
|
|
<th>Designation</th>
|
|
<th>Nombre</th>
|
|
<th>Prix unitaire</th>
|
|
<th>Moyen de paiement</th>
|
|
<th>Date</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
{% for facture in facture_list %}
|
|
<tr>
|
|
<td>{{ facture.user }}</td>
|
|
<td>{{ facture.name }}</td>
|
|
<td>{{ facture.number }}</td>
|
|
<td>{{ facture.prix }}</td>
|
|
<td>{{ facture.paiement }}</td>
|
|
<td>{{ facture.date }}</td>
|
|
<td>{% if is_cableur %}<a class="btn btn-primary btn-sm" role="button" href="{% url 'cotisations:edit-facture' facture.id %}"><i class="glyphicon glyphicon-bitcoin"></i> Editer</a>{% endif %}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
|