remove location

This commit is contained in:
JBthePenguin 2021-06-05 13:08:55 +02:00
parent bd2c6f25f5
commit c74ba5ed85
17 changed files with 39 additions and 287 deletions

View file

@ -2,4 +2,22 @@
{include file="%s_nav.tpl"|args:$plugin_tpl current="index"}
<table class="list">
<caption>Matériels</caption>
<thead>
<th>Nombre en stock</th>
<td>Categorie</td>
<td>Désignation</td>
</thead>
<tbody>
{foreach from=$eqmts item="eqmt"}
<tr>
<th>{$eqmt.number_of_equipments}</th>
<th>{$eqmt.category.name}</th>
<th>{$eqmt.designation}</th>
</tr>
{/foreach}
</tbody>
</table>
{include file="admin/_foot.tpl"}