{{!-- SPDX-FileCopyrightText: 2021 Johannes Loher SPDX-FileCopyrightText: 2021 Gesina Schwalbe SPDX-License-Identifier: MIT --}} {{!-- !-- 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 type: The type of the items in this table. !-- @param @partial-block: Custom column headers can be passed using the partial block. --}}
  • {{!-- equipped --}} {{#if isEquipable}}
    {{localize 'DS4.ItemEquippedAbbr'}}
    {{/if}} {{!-- image --}}
    {{!-- amount --}} {{#if hasQuantity}}
    #
    {{/if}} {{!-- name --}}
    {{localize 'DS4.ItemName'}}
    {{!-- item type specifics --}} {{#if @partial-block }} {{> @partial-block }} {{/if}} {{!-- description --}} {{#unless hideDescription}}
    {{localize 'DS4.Description'}}
    {{/unless}} {{!-- control buttons placeholder --}}