materiels/src/templates/index.tpl
2021-06-05 13:52:32 +02:00

23 lines
516 B
Smarty

{include file="admin/_head.tpl" title="%s"|args:$plugin.nom current="plugin_%s"|args:$plugin.id}
{include file="%s_nav.tpl"|args:$plugin_tpl current="index"}
<table class="list">
<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"}