bol/templates/dialogs/adv-roll-part.hbs

12 lines
711 B
Handlebars
Raw Normal View History

2022-01-16 21:29:12 +01:00
<div class="flexrow" style="margin-bottom: 1px;">
<div class="flex1 center bg-darkred">
2022-02-18 21:58:53 +01:00
<label for="adv">{{localize 'BOL.ui.bonusmalus'}}</label>
2022-01-16 21:29:12 +01:00
</div>
<div class="flex1 center cell">
2022-02-18 21:58:53 +01:00
<input type="radio" class="bdice" name="adv" value="1" {{#if (eq adv "1B")}}checked{{/if}}/>+1dB<br />
<input type="radio" class="bdice" name="adv" value="2" {{#if (eq adv "2B")}}checked{{/if}}/>+2dB<br />
<input type="radio" class="mdice" name="adv" value="1" {{#if (eq adv "1M")}}checked{{/if}}/>+1dM<br />
<input type="radio" class="mdice" name="adv" value="2" {{#if (eq adv "2M")}}checked{{/if}}/>+2dM<br />
2022-01-16 21:29:12 +01:00
</div>
</div>