SillyTavern/public/scripts/templates/masterExport.html

18 lines
548 B
HTML
Raw Normal View History

<h3 data-i18n="Choose what to export">
2024-09-21 23:21:19 +03:00
Choose what to export
</h3>
<div class="flex-container flexFlowColumn justifyLeft">
{{#each sections}}
{{#with this}}
<label class="checkbox_label">
{{#if checked}}
<input type="checkbox" value="{{key}}" checked />
{{else}}
<input type="checkbox" value="{{key}}" />
{{/if}}
<span data-i18n="{{name}}">{{name}}</span>
</label>
{{/with}}
2024-09-21 23:21:19 +03:00
{{/each}}
</div>