83 lines
3.4 KiB
HTML
83 lines
3.4 KiB
HTML
<div class="l5r5e dice-picker-dialog">
|
|
|
|
<form class="noflex l5r5e dices" autocomplete="off">
|
|
<table>
|
|
<tr>
|
|
<td class="profil center">
|
|
<img class="profile-img"
|
|
src="{{#if actor.img}}{{actor.img}}{{/if}}{{^if actor.img}}icons/svg/mystery-man.svg{{/if}}"
|
|
data-edit="img"
|
|
height="200"
|
|
width="200"
|
|
alt="{{#if actor.name}}{{actor.name}}{{/if}}{{^if actor.name}}mystery-man{{/if}}"
|
|
>
|
|
</td>
|
|
<td class="rings center">
|
|
<ul class="rings">
|
|
{{#each elementsList}}
|
|
<li id="{{this.id}}">
|
|
<label class="attribute-label {{this.id}} centered-input ring-selection">
|
|
<i class="i_{{this.id}}"></i>
|
|
<strong>{{this.label}}</strong>
|
|
<input class="centered-input approach_{{this.id}}"
|
|
type="text"
|
|
name="approach"
|
|
data-ringid="{{this.id}}"
|
|
value="{{this.value}}"
|
|
readonly="readonly"
|
|
/>
|
|
</label>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
</td>
|
|
<td class="skill center">
|
|
{{#if skillData.name}}
|
|
<label>{{skillData.name}} </label>
|
|
|
|
{{skillData.value}}
|
|
|
|
{{/if}}
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="center">
|
|
<!-- TODO-->
|
|
ND : {{difficulty}}
|
|
</td>
|
|
<td class="center">
|
|
<div class="third">
|
|
<i id="ring_sub" class="quantity fa fa-minus-square"></i>
|
|
</div>
|
|
<div class="third">
|
|
<input id="ring_value" class="centered-input" type="text" name="ring" value="0"
|
|
readonly="readonly">
|
|
<img src="systems/l5r5e/assets/dices/default/ring_blank.png" alt="1">
|
|
</div>
|
|
<div class="third">
|
|
<i id="ring_add" class="quantity fa fa-plus-square"></i>
|
|
</div>
|
|
</td>
|
|
<td class="center">
|
|
<div class="third">
|
|
<i id="skill_sub" class="quantity fa fa-minus-square"></i>
|
|
</div>
|
|
<div class="third">
|
|
<input id="skill_value" class="centered-input" type="text" name="skill"
|
|
value="{{skillData.value}}" readonly="readonly">
|
|
<img src="systems/l5r5e/assets/dices/default/skill_blank.png" alt="1">
|
|
</div>
|
|
<div class="third">
|
|
<i id="skill_add" class="quantity fa fa-plus-square"></i>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
|
|
<div class="form-group">
|
|
<button name="roll">Roll <i class='fas fa-arrow-circle-right'></i></button>
|
|
</div>
|
|
</form>
|
|
</div>
|