daggerheart/templates/dialogs/item-transfer.hbs
WBHarry 2920ead81a
[Fix] Inventory Item Transfer (#1316)
* 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

* .
2025-11-23 15:04:42 +01:00

9 lines
No EOL
430 B
Handlebars

<div>
<div class="item-transfer-container">
<input type="range" step="1" min="0" max="{{item.system.quantity}}" name="quantity" value="{{quantity}}" />
<input type="text" value="{{quantity}}" class="number-display" />
</div>
<footer class="item-sheet-footer">
<button type="button" data-action="finish">{{localize "DAGGERHEART.APPLICATIONS.ItemTransfer.transfer"}}</button>
</footer>
</div>