Add files via upload

This commit is contained in:
CK 2020-06-24 14:31:52 -04:00 committed by GitHub
parent a59213e72e
commit 36e5bee2f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 212 additions and 0 deletions

View 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>