2023-10-10 10:59:46 +02:00
|
|
|
<nav class="tabs">
|
2024-11-16 10:25:16 +01:00
|
|
|
{{if $current == 'inventaire'}}
|
2024-11-14 16:21:10 +01:00
|
|
|
<aside>
|
|
|
|
{{:linkbutton label="Ajouter un nouveau matériel" shape="plus" href="mouvements/ajouter_entree.html" target="_dialog"}}
|
|
|
|
</aside>
|
|
|
|
{{/if}}
|
|
|
|
|
2023-12-06 09:59:11 +01:00
|
|
|
<ul>
|
2024-11-18 12:22:23 +01:00
|
|
|
<li {{if $current == 'inventaire'}} class="current"{{/if}}><a href="{{$module.url}}index.html?prop=1">Inventaire</a></li>
|
2024-11-14 16:21:10 +01:00
|
|
|
<li {{if $current == 'config'}} class="current"{{/if}}><a href="{{$module.url}}categories/index.html">Configuration</a></li>
|
2023-12-06 09:59:11 +01:00
|
|
|
</ul>
|
2024-11-15 20:27:42 +01:00
|
|
|
|
2024-11-16 10:25:16 +01:00
|
|
|
{{if $current == 'inventaire'}}
|
2024-11-14 16:21:10 +01:00
|
|
|
<ul class="sub">
|
2024-11-18 12:22:23 +01:00
|
|
|
<li {{if $subcurrent == 'proprio'}} class="current"{{/if}}><a href="{{$module.url}}index.html?prop=1">Matériels permanents</a></li>
|
|
|
|
<li {{if $subcurrent == 'nonproprio'}} class="current"{{/if}}><a href="{{$module.url}}index.html?prop=0">Matériels temporaires</a></li>
|
2024-11-14 16:21:10 +01:00
|
|
|
</ul>
|
2024-11-16 10:25:16 +01:00
|
|
|
{{if $subsubcurrent == 'mouvements'}}
|
2024-11-15 20:27:42 +01:00
|
|
|
<ul class="sub">
|
|
|
|
<li class="title"><strong>{{$eqpmt}} ({{$category}})</strong></li>
|
|
|
|
<li class="current"><a>Mouvements</a></li>
|
|
|
|
</ul>
|
|
|
|
{{/if}}
|
2024-11-14 16:21:10 +01:00
|
|
|
{{elseif $current == 'config'}}
|
2024-11-18 12:22:23 +01:00
|
|
|
{{if $subcurrent == 'typesES'}}
|
|
|
|
<aside>
|
|
|
|
{{:linkbutton label="Ajouter un type d'entrée" shape="plus" href="config/ajouter_type_mouvement.html?dir=input" target="_dialog"}}
|
|
|
|
{{:linkbutton label="Ajouter un type de sortie" shape="plus" href="config/ajouter_type_mouvement.html?dir=output" target="_dialog"}}
|
|
|
|
</aside>
|
|
|
|
{{/if}}
|
2024-11-14 16:21:10 +01:00
|
|
|
<ul class="sub" >
|
|
|
|
<li {{if $subcurrent == 'categories'}} class="current"{{/if}}><a href="{{$module.url}}categories/index.html">Catégories</a></li>
|
|
|
|
<li {{if $subcurrent == 'typesES'}} class="current"{{/if}}><a href="{{$module.url}}config.html">Types ES</a></li>
|
|
|
|
</ul>
|
|
|
|
{{/if}}
|
2023-10-10 10:59:46 +02:00
|
|
|
</nav>
|