forked from GitHub-Mirrors/foundry-sw5e
Add files via upload
This commit is contained in:
parent
a59213e72e
commit
36e5bee2f4
7 changed files with 212 additions and 0 deletions
17
templates/apps/trait-selector.html
Normal file
17
templates/apps/trait-selector.html
Normal file
|
@ -0,0 +1,17 @@
|
|||
<form autocomplete="off" onsubmit="event.preventDefault();">
|
||||
<ol class="trait-list">
|
||||
{{#each choices as |choice key|}}
|
||||
<li>
|
||||
<label class="checkbox">
|
||||
<input type="checkbox" name="{{key}}" data-dtype="Boolean" {{checked choice.chosen}}>
|
||||
{{choice.label}}
|
||||
</label>
|
||||
</li>
|
||||
{{/each}}
|
||||
</ol>
|
||||
<div class="form-group stacked">
|
||||
<label>{{ localize "SW5E.TraitSelectorSpecial" }}</label>
|
||||
<input type="text" name="custom" value="{{custom}}" data-dtype="String"/>
|
||||
</div>
|
||||
<button type="submit" name="submit" value="1"><i class="far fa-save"></i> {{ localize "SW5E.Save"}}</button>
|
||||
</form>
|
Loading…
Add table
Add a link
Reference in a new issue