Files
l5rx-chiaroscuro/system/templates/actors/npc/skill.html
2022-01-21 13:45:11 +01:00

10 lines
565 B
HTML

<ul class="npc-skill">
{{#each data.data.skills as |skillValue skillCatId|}}
<li class="skill skill-wrapper">
<label class="dice-picker" data-skillcat="{{skillCatId}}">
{{localizeSkill skillCatId "title"}}
</label>
<input class="centered-input select-on-focus" id="skill_{{skillCatId}}" type="number" name="data.skills.{{skillCatId}}" value="{{skillValue}}" data-dtype="Number" min="0" max="9" placeholder="0" {{^if ../data.editable_not_soft_locked}}disabled{{/if}}/>
</li>
{{/each}}
</ul>