Ajout contrôles et messages
This commit is contained in:
parent
c86154d1b3
commit
005b53096c
|
@ -96,7 +96,7 @@
|
|||
label="Ajouter un champ"
|
||||
onclick="addLine('#input_body')"}}
|
||||
</p>
|
||||
<div class="help">
|
||||
<div class="help block">
|
||||
<h3>Signification du type d'entrée</h3>
|
||||
<ul>
|
||||
<li><b>définitif</b> : l'asso devient propriétaire du matériel (ex : achat, don)</li>
|
||||
|
@ -166,7 +166,7 @@
|
|||
label="Ajouter un champ"
|
||||
onclick="addLine('#output_body')"}}
|
||||
</p>
|
||||
<div class="help">
|
||||
<div class="help block">
|
||||
<h3>Signification du type de sortie</h3>
|
||||
<ul>
|
||||
<li><b>définitif</b> : le matériel n'appartient plus à l'asso (ex : vente, casse, perte, vol, ...)</li>
|
||||
|
|
11
index.html
11
index.html
|
@ -3,6 +3,15 @@
|
|||
{{* barre de navigation *}}
|
||||
{{:include file="/%s/_nav.html"|args:$module.name current="index"}}
|
||||
|
||||
{{:include file="./inventaire.html" print_cat_name=true}}
|
||||
{{#select
|
||||
key
|
||||
FROM module_data_equipment as cat
|
||||
WHERE json_extract(cat.document, '$.type') = 'category'
|
||||
}}
|
||||
{{:assign var="categories." value=$key}}
|
||||
{{:include file="./inventaire.html" print_cat_name=true}}
|
||||
{{else}}
|
||||
<p class="block alert">Il n'y a aucune catégorie : vous devez en ajouter.</p>
|
||||
{{/select}}
|
||||
|
||||
{{:admin_footer}}
|
||||
|
|
|
@ -57,6 +57,8 @@
|
|||
target="_dialog"}}
|
||||
</td>
|
||||
</tr>
|
||||
{{else}}
|
||||
<p class="block alert">Il n'y a aucune entrée : vous devez en ajouter.</p>
|
||||
{{/list}}
|
||||
</section>
|
||||
|
||||
|
|
|
@ -56,6 +56,8 @@
|
|||
target="_dialog"}}
|
||||
</td>
|
||||
</tr>
|
||||
{{else}}
|
||||
<p class="block alert">Il n'y a aucune sortie : vous devez en ajouter.</p>
|
||||
{{/list}}
|
||||
</section>
|
||||
|
||||
|
|
Loading…
Reference in New Issue