35 lines
1.1 KiB
Handlebars
35 lines
1.1 KiB
Handlebars
|
{{!--
|
||
|
!-- Render an item list header row.
|
||
|
!-- If the partial is called with a partial block, the partial block
|
||
|
!-- content is inserted before the description heading.
|
||
|
!--
|
||
|
!-- @param isEquipable: A flag to enable the equipped column.
|
||
|
!-- @param hasQuantity: A flag to enable the quantity column.
|
||
|
!-- @param hideDescription: A flag to disable the description column.
|
||
|
!-- @param @partial-block: Custom column headers can be passed using the partial block.
|
||
|
--}}
|
||
|
<li class="ds4-item-list__row ds4-item-list__row--header">
|
||
|
{{!-- equipped --}}
|
||
|
{{#if isEquipable}}
|
||
|
<div title="{{localize 'DS4.ItemEquipped'}}">{{localize 'DS4.ItemEquippedAbbr'}}</div>
|
||
|
{{/if}}
|
||
|
{{!-- image --}}
|
||
|
<div></div>
|
||
|
{{!-- amount --}}
|
||
|
{{#if hasQuantity}}
|
||
|
<div title="{{localize 'DS4.Quantity'}}">#</div>
|
||
|
{{/if}}
|
||
|
{{!-- name --}}
|
||
|
<div>{{localize 'DS4.ItemName'}}</div>
|
||
|
{{!-- item type specifics --}}
|
||
|
{{#if @partial-block }}
|
||
|
{{> @partial-block }}
|
||
|
{{/if}}
|
||
|
{{!-- description --}}
|
||
|
{{#unless hideDescription}}
|
||
|
<div>{{localize 'DS4.Description'}}</div>
|
||
|
{{/unless}}
|
||
|
{{!-- control buttons placeholder --}}
|
||
|
<div></div>
|
||
|
</li>
|