8
0
Fork 0
mirror of https://gitlab.federez.net/re2o/re2o synced 2024-06-02 07:52:23 +00:00
re2o/cotisations/templates/cotisations/aff_cotisations.html

46 lines
2 KiB
HTML
Raw Normal View History

{% if facture_list.paginator %}
{% include "pagination.html" with list=facture_list %}
{% endif %}
2016-07-03 16:09:58 +00:00
<table class="table table-striped">
<thead>
<tr>
<th>Utilisateur</th>
<th>Designation</th>
2016-07-13 23:54:06 +00:00
<th>Prix total</th>
2016-07-03 16:09:58 +00:00
<th>Moyen de paiement</th>
<th>Date</th>
<th></th>
2016-07-11 22:05:07 +00:00
<th></th>
<th></th>
2016-07-03 16:09:58 +00:00
</tr>
</thead>
{% for facture in facture_list %}
<tr>
<td>{{ facture.user }}</td>
<td>{{ facture.name }}</td>
2016-07-13 23:54:06 +00:00
<td>{{ facture.prix_total }}</td>
2016-07-03 16:09:58 +00:00
<td>{{ facture.paiement }}</td>
<td>{{ facture.date }}</td>
{% if is_cableur %}
<td><div class="dropdown">
<button class="btn btn-default dropdown-toggle" type="button" id="editionfacture" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
Modifier
<span class="caret"></span>
</button>
<ul class="dropdown-menu" aria-labelledby="editionfacture">
{% if facture.valid and not facture.control or is_trez %}
<li><a href="{% url 'cotisations:edit-facture' facture.id %}"><i class="glyphicon glyphicon-bitcoin"></i> Editer</a></li>
<li><a href="{% url 'cotisations:del-facture' facture.id %}"><i class="glyphicon glyphicon-trash"></i> Supprimer</a></li>
{% else %}
<li>Facture controlée</li>
{% endif %}
</ul></div></td>
{% endif %}
<td>{% if facture.valid %}<a class="btn btn-primary btn-sm" role="button" href="{% url 'cotisations:facture-pdf' facture.id %}"><i class="glyphicon glyphicon-save"></i> PDF</a>{% else %}Facture invalide{% endif %}</td>
2016-11-16 19:55:28 +00:00
<td><a class="btn btn-info btn-sm" role="button" href="{% url 'cotisations:history' 'facture' facture.id %}"><i class="glyphicon glyphicon-time"></i> Historique</a></td>
2016-07-03 16:09:58 +00:00
</tr>
{% endfor %}
</table>