All checks were successful
Release Creation / build (release) Successful in 58s
25 lines
951 B
Handlebars
25 lines
951 B
Handlebars
<div class="lethalfantasy-combat-action-dialog">
|
|
|
|
<fieldSet class="">
|
|
<legend>{{localize "LETHALFANTASY.Label.combatAction"}} for {{actorName}}</legend>
|
|
|
|
{{#if currentAction}}
|
|
<label>{{localize "LETHALFANTASY.Label.currentAction"}} : {{currentAction.name}}</label>
|
|
<label>{{localize "LETHALFANTASY.Label.rollProgressionCount"}} : {{currentAction.progressionCount}}</label>
|
|
{{else}}
|
|
<label>{{localize "LETHALFANTASY.Label.selectAction"}} : Choose a weapon to attack or a spell/miracle to cast</label>
|
|
<select name="selectedChoice" data-tooltip-direction="UP">
|
|
{{selectOptions weaponsChoices selected=selectedChoice valueAttr="id" labelAttr="name"}}
|
|
</select>
|
|
{{/if}}
|
|
|
|
</fieldSet>
|
|
|
|
<fieldSet>
|
|
<legend>{{localize "LETHALFANTASY.Roll.visibility"}}</legend>
|
|
<select name="visibility">
|
|
{{selectOptions rollModes selected=visibility localize=true}}
|
|
</select>
|
|
</fieldSet>
|
|
|
|
</div> |