Listage entrées matériel

This commit is contained in:
Jean-Christophe Engel 2023-10-16 12:01:41 +02:00
parent 90293cb997
commit 41dad67b1b
1 changed files with 33 additions and 0 deletions

View File

@ -4,6 +4,10 @@
{{* barre de navigation *}}
{{:include file="/%s/_nav.html"|args:$module.name current="entrees"}}
{{if $_GET.ok}}
<p class="block confirm">Entrée enregistrée.</p>
{{/if}}
<form method="post" action="">
<fieldset class="entree">
<legend>Ajouter une entrée pour du </legend>
@ -13,4 +17,33 @@
</form>
{{* lister les entrées *}}
<table class="list">
<thead>
<tr>
<th>Date</th>
<th>Type</th>
<th>Nombre</th>
<th>Matériel</th>
<th>Remarques</th>
<th>Action(s)</th>
</tr>
</thead>
<tbody>
{{#load type="movement" direction="entrée" assign="entrees"}}
{{#load type="equipment" key=$entrees.equipment assign="equipment"}}
<tr>
<td>{{$entrees.date}}</td>
<td>{{$entrees.inputNature}}</td>
<td>{{$entrees.amount}}</td>
<td>{{$designation}}</td>
<td>{{$entrees.comment}}</td>
<td class="actions">
{{:linkbutton label="Supprimer" href="delete.html?id=%s"|args:$key shape="delete" target="_dialog"}}
</td>
</tr>
{{/load}}
</tbody>
{{/load}}
</table>
{{:admin_footer}}