Initial
This commit is contained in:
24
resources/app/templates/dice/roll-resolver.hbs
Normal file
24
resources/app/templates/dice/roll-resolver.hbs
Normal file
@@ -0,0 +1,24 @@
|
||||
<section class="flexcol standard-form">
|
||||
<p class="formula">{{ formula }}</p>
|
||||
{{#each groups}}
|
||||
<fieldset class="input-grid" data-term-id="{{ @key }}">
|
||||
<legend>{{ label }} <span data-tooltip="{{ tooltip }}" aria-label="{{ tooltip }}">{{{ icon }}}</span></legend>
|
||||
{{#each results}}
|
||||
<label class="icon die-input {{#if isNew}}new-addition{{/if}}" data-denomination="{{ denomination }}"
|
||||
data-method="{{ method }}">
|
||||
{{ numberInput value min=1 max=faces step=1 name=id readonly=readonly placeholder=(localize denomination)
|
||||
disabled=disabled autofocus=true }}
|
||||
{{#if rerolled}}<i class="fas fa-arrow-rotate-right"></i>{{/if}}
|
||||
{{#if exploded}}<i class="fas fa-burst"></i>{{/if}}
|
||||
{{{ icon }}}
|
||||
</label>
|
||||
{{/each}}
|
||||
</fieldset>
|
||||
{{/each}}
|
||||
<footer class="form-footer">
|
||||
<button type="submit">
|
||||
<i class="fas fa-check"></i>
|
||||
{{ localize "DICE.SubmitRollPl" }}
|
||||
</button>
|
||||
</footer>
|
||||
</section>
|
||||
Reference in New Issue
Block a user