mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
Add ability to omit settings from Connection Profiles
This commit is contained in:
16
public/scripts/extensions/connection-manager/edit.html
Normal file
16
public/scripts/extensions/connection-manager/edit.html
Normal 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>
|
Reference in New Issue
Block a user