31 lines
949 B
Handlebars
31 lines
949 B
Handlebars
<div class="skill-roll-dialog">
|
|
<header class="roll-dialog-header">
|
|
{{#if img}}
|
|
<img class="actor-icon" src="{{img}}" title="{{name}}" />
|
|
{{/if}}
|
|
<span class="roll-dialog-actor-title">{{title}}</span>
|
|
</header>
|
|
|
|
<div class="flexcol">
|
|
|
|
{{> systems/fvtt-ecryme/templates/dialogs/partial-common-roll-dialog.hbs}}
|
|
|
|
<div class="flexrow">
|
|
<span class="roll-dialog-label">{{localize "ECRY.ui.difficulty"}} : </span>
|
|
<select id="roll-difficulty" data-dtype="String">
|
|
{{selectOptions config.difficulty selected=difficulty localize=true labelAttr="difficulty"}}
|
|
</select>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<footer class="sheet-footer flexrow">
|
|
<button type="button" data-action="roll">
|
|
<i class="fas fa-check"></i> {{localize "ECRY.ui.roll"}}
|
|
</button>
|
|
<button type="button" data-action="cancel">
|
|
<i class="fas fa-times"></i> {{localize "ECRY.ui.cancel"}}
|
|
</button>
|
|
</footer>
|
|
</div>
|