test présence matériel dans catégorie
This commit is contained in:
parent
795e55e172
commit
86443b9bb0
|
@ -24,10 +24,19 @@
|
|||
{{* afficher les catégories déjà enregistrées *}}
|
||||
<section class="categories">
|
||||
{{#list select="$$.name AS 'Catégorie'" order="1" where="$$.type = 'category'"}}
|
||||
{{: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}}
|
||||
<tr>
|
||||
<th>{{$name}}</th>
|
||||
<td class="actions">
|
||||
{{if $materiel_present}}
|
||||
{{:linkbutton label="Liste des matériels" href="list_equipment.html?key=%s&dialog"|args:$key shape="search" target="_dialog"}}
|
||||
{{/if}}
|
||||
{{: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>
|
||||
|
|
Loading…
Reference in New Issue