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
28
templates/apps/polymorph-prompt.html
Normal file
28
templates/apps/polymorph-prompt.html
Normal file
|
@ -0,0 +1,28 @@
|
|||
<div class="dialog-content">
|
||||
{{#each content.i18n}}
|
||||
<div>
|
||||
<label class="checkbox" for="{{@key}}">
|
||||
<input type="checkbox" id="{{@key}}" name="{{@key}}" {{checked (lookup ../content.options @key)}}>
|
||||
{{this}}
|
||||
</label>
|
||||
</div>
|
||||
{{/each}}
|
||||
{{#unless content.isToken}}
|
||||
<hr>
|
||||
<div>
|
||||
<label class="checkbox" for="transformTokens">
|
||||
<input type="checkbox" id="transformTokens" name="transformTokens"
|
||||
{{checked content.options.transformTokens}}>
|
||||
{{localize 'SW5E.PolymorphTokens'}}
|
||||
</label>
|
||||
</div>
|
||||
{{/unless}}
|
||||
</div>
|
||||
<div class="dialog-buttons">
|
||||
{{#each buttons as |button id|}}
|
||||
<button class="dialog-button" data-button="{{id}}">
|
||||
{{{button.icon}}}
|
||||
{{{button.label}}}
|
||||
</button>
|
||||
{{/each}}
|
||||
</div>
|
Loading…
Add table
Add a link
Reference in a new issue