mirror of
https://github.com/nanoy42/coope
synced 2024-11-22 19:33:11 +00:00
61 lines
1.9 KiB
HTML
61 lines
1.9 KiB
HTML
{% extends "base.html" %}
|
|
{% load static %}
|
|
{% block entete %}Menus{%endblock%}
|
|
|
|
{% block navbar %}
|
|
<ul>
|
|
<li><a href="#first">Consommations de menus ({{user}})</a></li>
|
|
</ul>
|
|
{% endblock %}
|
|
{% block content %}
|
|
<section id="first" class="main special">
|
|
<header class="major">
|
|
<h2>Consommations de menus (<a href="{% url 'profile:users' user.pk %}">{{user}}</a>)</h2>
|
|
</header>
|
|
<section id="rechargements">
|
|
<div class="table-wrapper">
|
|
<table>
|
|
<thead id="headTransaction">
|
|
<tr>
|
|
<th>Menu</th>
|
|
<th>Quantité</th>
|
|
<th>Montant</th>
|
|
<th>Type de Paiement</th>
|
|
<th>Date</th>
|
|
<th>Annuler</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="bodyTransaction">
|
|
{% for m in menus %}
|
|
<tr>
|
|
<td>{{m.menu}}</td>
|
|
<td>{{m.quantity}}</td>
|
|
<td>{{m.amount}}</td>
|
|
<td>{{m.paymentMethod}}</td>
|
|
<td>{{m.date}}</td>
|
|
<td>{% if perms.gestion.delete_menuhistory %}<a href="{% url 'gestion:cancelMenu' m.pk %}" class="button small">Annuler</a>{% endif %}</td>
|
|
</tr>
|
|
{%endfor%}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="pagination special">
|
|
<span class="step-links">
|
|
{% if menus.has_previous %}
|
|
<a href="{% url 'users:allMenus' user.pk 1 %}">« Première </a>
|
|
<a href="{% url 'users:allMenus' user.pk menus.previous_page_number %}"> Précédente </a>
|
|
{% endif %}
|
|
|
|
<span class="current">
|
|
Page {{ menus.number }} sur {{ menus.paginator.num_pages }}.
|
|
</span>
|
|
|
|
{% if menus.has_next %}
|
|
<a href="{% url 'users:allMenus' user.pk menus.next_page_number %}"> Suivante </a>
|
|
<a href="{% url 'users:allMenus' user.pk menus.paginator.num_pages %}"> Dernière »</a>
|
|
{% endif %}
|
|
</span>
|
|
</div>
|
|
</section>
|
|
</section>
|
|
{%endblock%}
|