mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 19:51:08 +01:00
* Action Setting Dialog style * fix small style details in action config application * requested changes --------- Co-authored-by: moliloo <dev.murilobrito@gmail.com>
12 lines
No EOL
639 B
Handlebars
12 lines
No EOL
639 B
Handlebars
<fieldset class="one-column">
|
|
<legend>Range{{#if fields.target}} & Target{{/if}}</legend>
|
|
{{formField fields.range value=source.range label="Range" name=(concat path "range") localize=true}}
|
|
{{#if fields.target}}
|
|
<div class="nest-inputs">
|
|
{{#if (and source.target.type (not (eq source.target.type 'self')))}}
|
|
{{ formField fields.target.amount value=source.target.amount label="Amount" name=(concat path "target.amount") }}
|
|
{{/if}}
|
|
{{ formField fields.target.type value=source.target.type label="Target" name=(concat path "target.type") localize=true }}
|
|
</div>
|
|
{{/if}}
|
|
</fieldset> |