Add ability to omit settings from Connection Profiles

This commit is contained in:
Cohee
2024-09-25 14:23:43 +00:00
parent 6cab3c7d20
commit 0646a47b81
4 changed files with 99 additions and 12 deletions

View File

@ -0,0 +1,16 @@
<div>
<h3>Included settings:</h3>
<div class="justifyLeft flex-container flexFlowColumn flexNoGap">
{{#each settings}}
<label class="checkbox_label">
{{#if this}}
<input type="checkbox" value="{{@key}}" name="exclude" checked>
{{else}}
<input type="checkbox" value="{{@key}}" name="exclude">
{{/if}}
<span>{{@key}}</span>
</label>
{{/each}}
</div>
<h3>Profile name:</h3>
</div>