37 lines
1.5 KiB
Handlebars
37 lines
1.5 KiB
Handlebars
{{!--
|
|
SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
SPDX-FileCopyrightText: 2021 Gesina Schwalbe
|
|
|
|
SPDX-License-Identifier: MIT
|
|
--}}
|
|
|
|
{{!--
|
|
!-- Render an effect list entry row.
|
|
!-- @param effectData: The data of the item.
|
|
--}}
|
|
<li class="ds4-embedded-document-list__row effect" data-effect-uuid="{{effectData.uuid}}">
|
|
{{!-- enabled --}}
|
|
<input class="ds4-embedded-document-list__editable ds4-embedded-document-list__editable--checkbox change-effect"
|
|
type="checkbox" {{checked (ne effectData.disabled true)}} data-dtype="Boolean" data-property="disabled"
|
|
data-inverted="true" title="{{localize 'DS4.EffectEnabled'}}">
|
|
|
|
{{!-- active --}}
|
|
{{#if effectData.active}}<i class="fas fa-check"></i>{{else}}<i class="fas fa-ban"></i>{{/if}}
|
|
|
|
{{!-- icon --}}
|
|
{{> systems/ds4/templates/sheets/shared/components/rollable-image.hbs rollable=false src=effectData.icon
|
|
alt=(localize "DS4.DocumentImageAltText" name=effectData.label) title=effectData.label}}
|
|
|
|
{{!-- name --}}
|
|
<div title="{{effectData.name}}">{{effectData.name}}</div>
|
|
|
|
{{!-- source name --}}
|
|
<div title="{{effectData.sourceName}}">{{effectData.sourceName}}</div>
|
|
|
|
{{!-- factor --}}
|
|
<div title="{{effectData.factor}}">{{effectData.factor}}</div>
|
|
|
|
{{!-- control button group --}}
|
|
{{> systems/ds4/templates/sheets/shared/components/control-button-group.hbs documentType="effect"
|
|
editTitle="DS4.UserInteractionEditEffectTitle" deleteTitle="DS4.UserInteractionDeleteEffectTitle"}}
|
|
</li>
|