24 lines
832 B
Handlebars
24 lines
832 B
Handlebars
<div class="confrontation-start-dialog">
|
|
<div class="flexrow roll-dialog-header">
|
|
{{#if img}}
|
|
<img class="actor-icon" src="{{img}}" title="{{name}}" />
|
|
{{/if}}
|
|
<span class="roll-dialog-actor-title">{{title}}</span>
|
|
</div>
|
|
|
|
<footer class="sheet-footer flexcol">
|
|
<button type="button" data-action="rollNormal">
|
|
<i class="fas fa-check"></i> {{localize "ECRY.ui.rollnormal"}}
|
|
</button>
|
|
<button type="button" data-action="rollSpleen">
|
|
<i class="fas fa-check"></i> {{localize "ECRY.ui.rollspleen"}}
|
|
</button>
|
|
<button type="button" data-action="rollIdeal">
|
|
<i class="fas fa-check"></i> {{localize "ECRY.ui.rollideal"}}
|
|
</button>
|
|
<button type="button" data-action="cancel">
|
|
<i class="fas fa-times"></i> {{localize "ECRY.ui.cancel"}}
|
|
</button>
|
|
</footer>
|
|
</div>
|