Listage entrées matériel
This commit is contained in:
parent
90293cb997
commit
41dad67b1b
@ -4,6 +4,10 @@
|
|||||||
{{* barre de navigation *}}
|
{{* barre de navigation *}}
|
||||||
{{:include file="/%s/_nav.html"|args:$module.name current="entrees"}}
|
{{: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="">
|
<form method="post" action="">
|
||||||
<fieldset class="entree">
|
<fieldset class="entree">
|
||||||
<legend>Ajouter une entrée pour du </legend>
|
<legend>Ajouter une entrée pour du </legend>
|
||||||
@ -13,4 +17,33 @@
|
|||||||
</form>
|
</form>
|
||||||
|
|
||||||
{{* lister les entrées *}}
|
{{* 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}}
|
{{:admin_footer}}
|
||||||
|
Loading…
Reference in New Issue
Block a user