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

22 lines
1.2 KiB
Handlebars
Raw Normal View History

<h3 class="form-header">{{localize 'BOL.featureSubtypes.career'}}</h3>
<div class="property flexrow">
<label class="property-label">{{localize "BOL.ui.rank"}}</label>
2022-07-01 15:48:54 +02:00
<input type="text" name="system.rank" value="{{item.system.rank}}" data-dtype="Number"/>
</div>
2022-01-23 09:25:09 +01:00
<div class="property flexrow">
<label class="property-label">{{localize "BOL.ui.isSorcerer"}}</label>
2022-07-01 16:30:21 +02:00
<input class="field-value" type="checkbox" name="system.properties.sorcerer" {{checked item.system.properties.sorcerer}}>
2022-01-23 09:25:09 +01:00
</div>
<div class="property flexrow">
<label class="property-label">{{localize "BOL.ui.isAlchemist"}}</label>
2022-07-01 16:30:21 +02:00
<input class="field-value" type="checkbox" name="system.properties.alchemist" {{checked item.system.properties.alchemist}}>
2022-01-23 09:25:09 +01:00
</div>
<div class="property flexrow">
<label class="property-label">{{localize "BOL.ui.isPriest"}}</label>
2022-07-01 16:30:21 +02:00
<input class="field-value" type="checkbox" name="system.properties.priest" {{checked item.system.properties.priest}}>
2022-01-23 09:25:09 +01:00
</div>
2022-12-23 23:24:09 +01:00
<div class="property flexrow">
<label class="property-label">{{localize "BOL.ui.isAstrologer"}}</label>
<input class="field-value" type="checkbox" name="system.properties.astrologer" {{checked item.system.properties.astrologer}}>
</div>