2024-10-28 09:53:29 +01:00
|
|
|
{{* -*- brindille -*- *}}
|
|
|
|
|
2023-10-10 10:59:46 +02:00
|
|
|
{{:admin_header title="Gestion des matériels" current="module_equipment"}}
|
|
|
|
|
|
|
|
{{* barre de navigation *}}
|
2024-11-14 16:21:10 +01:00
|
|
|
{{:include file="../_nav.html" current="config" subcurrent="categories"}}
|
2023-10-12 14:55:05 +02:00
|
|
|
|
|
|
|
{{if $_GET.ok}}
|
2023-12-06 09:59:11 +01:00
|
|
|
{{if $_GET.msg == "modification"}}
|
|
|
|
<p class="block confirm">Modification enregistrée</p>
|
|
|
|
{{elseif $_GET.msg == "suppression"}}
|
|
|
|
<p class="block confirm">Catégorie supprimée</p>
|
2024-11-19 16:04:50 +01:00
|
|
|
{{else}}
|
|
|
|
<p class="block confirm">{{$_GET.msg}}</p>
|
2023-12-06 09:59:11 +01:00
|
|
|
{{/if}}
|
2023-12-05 19:17:08 +01:00
|
|
|
{{elseif $_GET.err}}
|
2023-12-06 09:59:11 +01:00
|
|
|
{{if $_GET.msg == "modification"}}
|
|
|
|
<p class="block error">{{$_GET.msg}}</p>
|
|
|
|
{{elseif $_GET.msg == "suppression"}}
|
|
|
|
<p class="block error">
|
|
|
|
Cette catégorie ne peut être supprimée car elle contient encore des matériels
|
|
|
|
</p>
|
|
|
|
{{/if}}
|
2023-10-12 14:55:05 +02:00
|
|
|
{{/if}}
|
|
|
|
|
|
|
|
{{* afficher les catégories déjà enregistrées *}}
|
|
|
|
<section class="categories">
|
2023-12-06 09:59:11 +01:00
|
|
|
{{#list select="$$.name AS 'Catégorie'" order="1" where="$$.type = 'category'"}}
|
2024-10-29 14:20:06 +01:00
|
|
|
{{:assign category_key=$key}}
|
|
|
|
{{* voir s'il y a des matériels dans cette catégorie *}}
|
|
|
|
{{:assign materiel_present=true}}
|
|
|
|
{{#load type="equipment" where="$$.category = :category_key" :category_key=$category_key}}
|
|
|
|
{{else}}
|
|
|
|
{{:assign materiel_present=false}}
|
|
|
|
{{/load}}
|
2023-12-06 09:59:11 +01:00
|
|
|
<tr>
|
|
|
|
<th>{{$name}}</th>
|
|
|
|
<td class="actions">
|
|
|
|
{{:linkbutton label="Modifier" href="modify_category.html?key=%s"|args:$key shape="edit" target="_dialog"}}
|
|
|
|
{{:linkbutton label="Supprimer" href="delete_category.html?key=%s"|args:$key shape="delete" target="_dialog"}}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{else}}
|
|
|
|
<p class="block alert">Il n'y a aucune catégorie : vous devez en ajouter.</p>
|
|
|
|
{{/list}}
|
2023-10-12 14:55:05 +02:00
|
|
|
</section>
|
|
|
|
|
2023-10-10 10:59:46 +02:00
|
|
|
{{:admin_footer}}
|