This repository has been archived on 2024-05-29. You can view files and clone it, but cannot push or open issues or pull requests.
fvtt-warhero/templates/item-money-sheet.html

29 lines
1.1 KiB
HTML
Raw Normal View History

2023-01-04 21:24:56 +01:00
<form class="{{cssClass}}" autocomplete="off">
<header class="sheet-header">
<img class="item-sheet-img" src="{{img}}" data-edit="img" title="{{name}}"/>
<div class="header-fields">
<h1 class="charname"><input name="name" type="text" value="{{name}}" placeholder="Name"/></h1>
</div>
</header>
2023-01-04 22:09:09 +01:00
{{> systems/fvtt-warhero/templates/partial-item-nav.html}}
2023-01-04 21:24:56 +01:00
{{!-- Sheet Body --}}
<section class="sheet-body">
2023-01-04 22:09:09 +01:00
{{> systems/fvtt-warhero/templates/partial-item-description.html}}
2023-01-04 21:24:56 +01:00
<div class="tab details" data-group="primary" data-tab="details">
<ul>
<li class="flexrow"><label class="generic-label">Quantity</label>
2023-01-04 22:09:09 +01:00
<input type="text" class="input-numeric-short padd-right" name="system.quantity" value="{{system.quantity}}" data-dtype="Number"/>
2023-01-04 21:24:56 +01:00
</li>
<li class="flexrow"><label class="generic-label">Unit value</label>
2023-01-04 22:09:09 +01:00
<input type="text" class="input-numeric-short padd-right" name="system.value" value="{{system.value}}" data-dtype="Number"/>
2023-01-04 21:24:56 +01:00
</li>
</ul>
</div>
</section>
</form>