31 lines
852 B
Smarty
31 lines
852 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="entrees"}
|
|
|
|
<fieldset>
|
|
<legend>Ajouter une entrée pour du </legend>
|
|
{linkbutton shape="plus" label="Matériel pas encore répertorié" href="non_repertorie.php"}
|
|
{linkbutton shape="plus" label="Matériel déjà répertorié" href="deja_repertorie.php"}
|
|
</fieldset>
|
|
|
|
<table class="list">
|
|
<thead>
|
|
<th><b>Date</b></th>
|
|
<th><b>Type</b></th>
|
|
<th><b>Nombre</b></th>
|
|
<th><b>Matériel</b></th>
|
|
</thead>
|
|
<tbody>
|
|
{foreach from=$entries item="entry"}
|
|
<tr>
|
|
<td>{$entry.entry_date}</td>
|
|
<td>{$entry.kind}</td>
|
|
<td>{$entry.equipment_number}</td>
|
|
<td>{$entry.equipment.designation}</td>
|
|
</tr>
|
|
{/foreach}
|
|
</tbody>
|
|
</table>
|
|
|
|
{include file="admin/_foot.tpl"}
|