Déplacement des différents settings

This commit is contained in:
Vincent Vandemeulebrouck
2022-11-06 21:39:03 +01:00
parent 9ea4c05199
commit ce562b6b8a
15 changed files with 28 additions and 35 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>