{{!-- !-- Render an item list entry row. !-- If the partial is called with a partial block, the partial block !-- content is inserted before the description. !-- @param itemData: The data of the item. !-- @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. --}}
  • {{!-- equipped --}} {{#if isEquipable}} {{/if}} {{!-- image --}}
    {{!-- amount --}} {{#if hasQuantity}} {{/if}} {{!-- name --}} {{!-- item type specifics --}} {{#if @partial-block }} {{> @partial-block}} {{/if}} {{!-- description --}} {{#unless hideDescription}}
    {{{itemData.data.description}}}
    {{/unless}} {{!-- control buttons --}} {{> systems/ds4/templates/actor/partials/overview-control-buttons.hbs }}