Ébauche inventaire page d'accueil
This commit is contained in:
parent
0a6f880cde
commit
90293cb997
2 changed files with 16 additions and 27 deletions
18
index.html
18
index.html
|
|
@ -1,6 +1,20 @@
|
|||
{{:admin_header title="Gestion des matériels" current="module_equipment"}}
|
||||
{{: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"}}
|
||||
|
||||
{{* barre de navigation *}}
|
||||
{{:include file="./_nav.html" current="index"}}
|
||||
{{: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>
|
||||
|
||||
{{:admin_footer}}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue