mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 03:31:07 +01:00
28 lines
No EOL
1,008 B
Handlebars
28 lines
No EOL
1,008 B
Handlebars
<li class='feature-item' data-feature-id='{{feature.id}}'>
|
|
<div class='feature-line'>
|
|
<img class='image' src='{{feature.img}}' />
|
|
<h4>
|
|
{{feature.name}}
|
|
</h4>
|
|
{{#unless hideContrals}}
|
|
<div class='controls'>
|
|
<a
|
|
class='effect-control'
|
|
data-action='editFeature'
|
|
data-feature={{feature.uuid}}
|
|
data-tooltip='{{localize "DAGGERHEART.Tooltip.openItemWorld"}}'
|
|
>
|
|
<i class="fa-solid fa-globe"></i>
|
|
</a>
|
|
<a
|
|
class='effect-control'
|
|
data-action='deleteFeature'
|
|
data-feature={{feature.uuid}}
|
|
data-tooltip='{{localize "DAGGERHEART.Tooltip.delete"}}'
|
|
>
|
|
<i class='fas fa-trash'></i>
|
|
</a>
|
|
</div>
|
|
{{/unless}}
|
|
</div>
|
|
</li> |