SillyTavern/public/scripts/templates/masterImport.html

18 lines
507 B
HTML
Raw Normal View History

2024-09-21 22:21:19 +02:00
<h3>
Choose what to import
</h3>
<div class="flex-container flexFlowColumn justifyLeft">
{{#each sections}}
2024-09-22 19:50:36 +02:00
{{#with this}}
<label class="checkbox_label">
<input type="checkbox" value="{{key}}" checked>
<span data-i18n="{{name}}">{{name}}</span>
{{#if preset}}
<span>&ndash;</span>
<small>{{preset}}</small>
{{/if}}
</label>
{{/with}}
2024-09-21 22:21:19 +02:00
{{/each}}
</div>