<div class="inventory-details">
    <div class="form-group">
        <label for="{{item.uuid}}-quantity">{{localize "PF2E.QuantityLabel"}}</label>
        <input type="number" name="system.quantity" id="{{item.uuid}}-quantity" value="{{data.quantity}}" />
    </div>
    <div class="form-group">
        <label for="{{item.uuid}}-usage">{{localize "PF2E.Item.Weapon.HandsLabel"}}</label>
        <select name="system.usage.value" id="{{item.uuid}}-usage">
            {{#select data.usage.value}}
                <option value="worngloves">0</option>
                <option value="held-in-one-hand">1</option>
                <option value="held-in-one-plus-hands">1+</option>
                <option value="held-in-two-hands">2</option>
            {{/select}}
        </select>
    </div>
    <div class="form-group">
        <label for="{{item.uuid}}-bulk">{{localize "PF2E.BulkLabel"}}</label>
        <select name="system.weight.value" id="{{item.uuid}}-bulk">
            {{#select data.weight.value}}
                <option value="-">{{localize "PF2E.NegligibleOption"}}</option>
                {{#each bulkTypes as |name type|}}
                    <option value="{{type}}">{{localize name}}</option>
                {{/each}}
            {{/select}}
        </select>
    </div>
    <div class="form-group">
        <label for="{{item.uuid}}-bulk-worn">{{localize "PF2E.EquippedBulkLabel"}}</label>
        <select name="system.equippedBulk.value" id="{{item.uuid}}-bulk-worn" {{disabled bulkDisabled}}>
            {{#select data.equippedBulk.value}}
                <option value="">{{localize "PF2E.EquippedSameBulkValue"}}</option>
                <option value="0">{{localize "PF2E.NegligibleOption"}}</option>
                {{#each bulkTypes as |name type|}}
                    <option value="{{type}}">{{localize name}}</option>
                {{/each}}
            {{/select}}
        </select>
    </div>
    <div class="form-group">
        <label for="{{item.uuid}}-size">{{localize "PF2E.Size"}}</label>
        <select name="system.size" id="{{item.uuid}}-size">
            {{#select data.size}}
                {{#each sizes as |name value|}}
                    <option value="{{value}}">{{localize name}}</option>
                {{/each}}
            {{/select}}
        </select>
    </div>
    <div class="form-group">
        <label for="{{item.uuid}}-price">
            {{localize "PF2E.PriceLabel"}}
            {{#if adjustedPriceHint}}<i class="fa-solid fa-info-circle small" title="{{adjustedPriceHint}}"></i>{{/if}}
        </label>
        <input
            type="text"
            {{#if (eq priceAdjustment "higher")}}class="adjusted adjusted-higher"{{else if (eq priceAdjustment "lower")}}class="adjusted-lower"{{/if}}
            id="{{item.uuid}}-price"
            value="{{item.price.value}}"
            data-property="system.price.value"
            data-value-base="{{basePrice}}"
            spellcheck="false"
        />
    </div>
    <ol class="item-tags tags">
        {{#if otherTags}}
            {{#each otherTags as |tag|}}
                <li class="tag tag_transparent">{{tag.label}}</li>
            {{/each}}
        {{/if}}
    </ol>
</div>