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-condition-sheet.html

28 lines
903 B
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-02-08 19:38: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>
2023-02-07 15:18:00 +01:00
<li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.effect"}}</label>
<input type="text" class="item-field-label-long" name="system.shortdescription" value="{{system.shortdescription}}" data-dtype="String"/>
</li>
2023-01-04 21:24:56 +01:00
</ul>
</div>
</section>
</form>