mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
* Organized language * Organized high level folders * Some deeper organization * More org. That's enough ._. * Capitalized initial system localization categories
30 lines
No EOL
1.1 KiB
Handlebars
30 lines
No EOL
1.1 KiB
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._id}}'
|
|
data-type='{{type}}'
|
|
data-tooltip='{{localize "DAGGERHEART.UI.Tooltip.openItemWorld"}}'
|
|
>
|
|
<i class="fa-solid fa-globe"></i>
|
|
</a>
|
|
<a
|
|
class='effect-control'
|
|
data-action='deleteFeature'
|
|
data-feature='{{feature._id}}'
|
|
data-type='{{type}}'
|
|
data-tooltip='{{localize "CONTROLS.CommonDelete"}}'
|
|
>
|
|
<i class='fas fa-trash'></i>
|
|
</a>
|
|
</div>
|
|
{{/unless}}
|
|
</div>
|
|
</li> |