fvtt-hero-system-6/templates/partials/partial-item-hasroll.hbs

14 lines
738 B
Handlebars
Raw Normal View History

2023-01-04 22:43:01 +01:00
<li class="flexrow"><label class="item-field-label-long">Has Roll ?</label>
<label class="item-field-label-medium"><input type="checkbox" name="system.hasroll" {{checked system.hasroll}}/></label>
</li>
{{#if system.hasroll}}
<li class="flexrow"><label class="item-field-label-long">Roll</label>
<input type="text" class="item-field-label-medium" name="system.roll" value="{{system.roll}}" data-dtype="Number"/>
</li>
2023-03-28 15:41:15 +02:00
<li class="flexrow"><label class="item-field-label-long">Computes BODY ?</label>
<label class="item-field-label-medium"><input type="checkbox" name="system.computebody" {{checked system.computebody}}/></label>
</li>
2023-01-04 22:43:01 +01:00
{{/if}}