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

29 lines
1.1 KiB
Handlebars
Raw Normal View History

<div class="form-group">
<label class="property-label">{{localize "BOL.ui.category"}}</label>
<div class="form-fields">
<select class="field-value" name="data.category" value="{{data.category}}" data-dtype="String">
{{#select data.category}}
{{#each config.itemCategories as |item id|}}
<option value="{{id}}">{{localize item}}</option>
{{/each}}
{{/select}}
</select>
</div>
2021-11-08 14:40:29 +01:00
</div>
2022-01-09 14:34:19 +01:00
{{#if (eq data.category "equipment")}}
{{> "systems/bol/templates/item/parts/properties/item/equipment-properties.hbs"}}
2021-11-08 14:40:29 +01:00
{{/if}}
2022-01-09 14:34:19 +01:00
{{#if (eq data.category "capacity")}}
{{> "systems/bol/templates/item/parts/properties/item/capacity-properties.hbs"}}
{{/if}}
2022-01-09 14:34:19 +01:00
{{#if (eq data.category "vehicle")}}
{{> "systems/bol/templates/item/parts/properties/item/vehicle-properties.hbs"}}
2021-11-08 14:40:29 +01:00
{{/if}}
2022-01-09 14:34:19 +01:00
{{#if (eq data.category "spell")}}
{{> "systems/bol/templates/item/parts/properties/item/spell-properties.hbs"}}
{{/if}}
2022-01-23 09:25:09 +01:00
{{#if (eq data.category "alchemy")}}
{{> "systems/bol/templates/item/parts/properties/item/alchemy-properties.hbs"}}
{{/if}}