Correction typo "optionnelle"

This commit is contained in:
2023-06-20 23:43:24 +02:00
parent 0e3d721fc7
commit b101d58bee
17 changed files with 69 additions and 69 deletions

View File

@ -0,0 +1,13 @@
<form autocomplete="off" onsubmit="event.preventDefault();">
{{#each groups as |group key|}}
<h3>{{key}}</h3>
<ul>
{{#each group as |regle r|}}
<li>
<input class="select-option" type="checkbox" name="{{regle.id}}" {{#if regle.active}}checked{{/if}}/>
<label>{{regle.descr}}</label>
</li>
{{/each}}
</ul>
{{/each}}
</form>