3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-05-09 10:42:24 +00:00
coope/users/templates/users/all_consumptions.html

62 lines
2.1 KiB
HTML

{% extends "base.html" %}
{% load static %}
{% block entete %}Consommations{%endblock%}
{% block navbar %}
<ul>
<li><a href="#first">Consommations ({{user}})</a></li>
</ul>
{% endblock %}
{% block content %}
<section id="first" class="main special">
<header class="major">
<h2>Consommations (<a href="{% url 'users:profile' user.pk %}">{{user}}</a>)</h2>
</header>
<section id="rechargements">
<div class="table-wrapper">
<table>
<thead id="headTransaction">
<tr>
<th>Produit</th>
<th>Quantité</th>
<th>Montant</th>
<th>Type de Paiement</th>
<th>Date</th>
<th>Annuler</th>
</tr>
</thead>
<tbody id="bodyTransaction">
{% for c in consumptions %}
<tr>
<td>{% if perms.gestion.view_product %}<a href="{% url 'gestion:productProfile' c.product.pk %}">{{ c.product.name }}{% else %}{{c.product.name}}{% endif %}</a></td>
<td>{{c.quantity}}</td>
<td>{{c.amount}}</td>
<td>{{c.paymentMethod}}</td>
<td>{{c.date}}</td>
<td>{% if perms.gestion.delete_consumptionhistory %}<a href="{% url 'gestion:cancelConsumption' c.pk %}" class="button small">Annuler</a>{% endif %}</td>
</tr>
{%endfor%}
</tbody>
</table>
</div>
<div class="pagination special">
<span class="step-links">
{% if consumptions.has_previous %}
<a href="{% url 'users:allConsumptions' user.pk 1 %}">&laquo; Première </a>
<a href="{% url 'users:allConsumptions' user.pk consumptions.previous_page_number %}"> Précédente </a>
{% endif %}
<span class="current">
Page {{ consumptions.number }} sur {{ consumptions.paginator.num_pages }}.
</span>
{% if consumptions.has_next %}
<a href="{% url 'users:allConsumptions' user.pk consumptions.next_page_number %}"> Suivante </a>
<a href="{% url 'users:allConsumptions' user.pk consumptions.paginator.num_pages %}"> Dernière &raquo;</a>
{% endif %}
</span>
</div>
</section>
</section>
{%endblock%}