2023-10-16 11:57:55 +02:00
|
|
|
{{:assign var="custom_css." value="./style.css"}}
|
|
|
|
{{:assign var="custom_css." value="/content.css"}}
|
|
|
|
|
|
|
|
{{:admin_header title="Gestion des matériels" custom_css=$custom_css current="module_equipment"}}
|
2023-10-10 10:59:46 +02:00
|
|
|
|
|
|
|
{{* barre de navigation *}}
|
2023-10-16 11:57:55 +02:00
|
|
|
{{:include file="/%s/_nav.html"|args:$module.name current="index"}}
|
|
|
|
|
|
|
|
<section class="inventaire">
|
|
|
|
{{#list select="$$.designation AS 'Matériel'; $$.key AS 'Clé'" where="$$.type = 'equipment'"}}
|
|
|
|
<tr>
|
|
|
|
<th>{{$designation}}</th>
|
|
|
|
<td>{{$key}}</td>
|
|
|
|
</tr>
|
|
|
|
{{else}}
|
|
|
|
<p class="block alert">Il n'y a aucun matériel.</p>
|
|
|
|
{{/list}}
|
|
|
|
</section>
|
2023-10-10 10:59:46 +02:00
|
|
|
|
|
|
|
{{:admin_footer}}
|