forked from public/bol
5d40642726
Avancement feuille d'items Ajout des données JSON pour génération des compendiums.
29 lines
1.2 KiB
Handlebars
29 lines
1.2 KiB
Handlebars
<div class="property flexrow">
|
|
<label class="property-label">{{localize "subtype"}}</label>
|
|
<select name="data.subtype" value="{{data.subtype}}" data-dtype="String">
|
|
{{#select data.subtype}}
|
|
<option value="boon">{{localize "Avantage"}}</option>
|
|
<option value="flaw">{{localize "Flaw"}}</option>
|
|
<option value="career">{{localize "Career"}}</option>
|
|
<option value="language">{{localize "Language"}}</option>
|
|
{{/select}}
|
|
</select>
|
|
</div>
|
|
|
|
<!-- <div class="grid grid-2col">-->
|
|
<div class="property flexrow">
|
|
<label class="property-label">Quantity</label>
|
|
<input type="text" name="data.quantity" value="{{data.quantity}}" data-dtype="Number"/>
|
|
</div>
|
|
<div class="property flexrow">
|
|
<label class="property-label">Weight</label>
|
|
<input type="text" name="data.weight" value="{{data.weight}}" data-dtype="Number"/>
|
|
</div>
|
|
<!-- </div>-->
|
|
{{#each data.properties as |property key|}}
|
|
<div class="property flexrow">
|
|
<label class="property-label">{{localize key}}</label>
|
|
<label class="attribute-value checkbox"><input type="checkbox" name="data.properties.{{key}}" {{checked property}}/></label>
|
|
</div>
|
|
{{/each}}
|