mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-01-12 11:41:08 +01:00
* Fixed so items from the inventory tab of the Party sheet can be dragged out * Added transfer logic * Added translation * Improved item transfer dialog title * Simplified title * Updated image * Simplified the handlebars templates for itemTransfer * Improved item-identicial check * Slight improved rendering * .
18 lines
No EOL
719 B
Handlebars
18 lines
No EOL
719 B
Handlebars
<li class='feature-item' data-item-uuid='{{feature.uuid}}' id="{{feature._id}}" data-type="{{type}}">
|
|
<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='editDoc' data-tooltip="DAGGERHEART.UI.Tooltip.openItemWorld">
|
|
<i class="fa-solid fa-globe"></i>
|
|
</a>
|
|
<a class='effect-control' data-action='deleteFeature' data-tooltip="CONTROLS.CommonDelete">
|
|
<i class='fas fa-trash'></i>
|
|
</a>
|
|
</div>
|
|
{{/unless}}
|
|
</div>
|
|
</li> |