2021-11-07 20:23:02 +01:00
|
|
|
<div class="property flexrow">
|
2021-11-08 14:40:29 +01:00
|
|
|
<label class="property-label">{{localize "BOL.ui.subtype"}}</label>
|
2021-11-07 20:23:02 +01:00
|
|
|
<select name="data.subtype" value="{{data.subtype}}" data-dtype="String">
|
|
|
|
{{#select data.subtype}}
|
2021-11-08 14:40:29 +01:00
|
|
|
{{#each config.featureSubtypes as |item id|}}
|
|
|
|
<option value="{{id}}">{{localize item}}</option>
|
|
|
|
{{/each}}
|
2021-11-07 20:23:02 +01:00
|
|
|
{{/select}}
|
|
|
|
</select>
|
|
|
|
</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}}
|