materiels/src/templates/index.tpl

23 lines
516 B
Smarty
Raw Normal View History

{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"}
2021-06-05 13:08:55 +02:00
<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"}