bol/templates/item/parts/properties/feature/fightoption-properties.hbs

25 lines
979 B
Handlebars
Raw Normal View History

2022-03-10 21:05:53 +01:00
<h3 class="form-header">{{localize "BOL.ui.fightOption"}}</h3>
<div class="form-group">
2023-06-22 23:05:04 +02:00
<label class="property-label">{{localize "BOL.ui.fightOptionType"}}</label>
<div class="form-fields">
<select name="system.properties.fightoptiontype" data-dtype="String">
{{#select item.system.properties.fightoptiontype}}
{{#each config.fightOptionTypes as |item id|}}
<option value="{{id}}">{{localize item}}</option>
{{/each}}
{{/select}}
</select>
2022-03-10 21:05:53 +01:00
</div>
2023-06-22 23:05:04 +02:00
</div>
<div class="property flexrow">
<label class="property-label">{{localize "BOL.ui.activated"}}</label>
<input class="field-value" type="checkbox" name="system.properties.activated" {{checked
item.system.properties.activated}}>
</div>
2022-03-10 21:05:53 +01:00
2023-06-22 23:05:04 +02:00
<div class="property flexrow">
<label class="property-label">{{localize "BOL.ui.isspecial"}}</label>
<input class="field-value" type="checkbox" name="system.properties.isspecial" {{checked
item.system.properties.isspecial}}>
</div>