mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2024-12-15 02:47:16 +01:00
17 lines
506 B
HTML
17 lines
506 B
HTML
|
<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>
|