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

49 lines
2.2 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>
2023-02-27 22:04:03 +01:00
<li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.israceskill"}}</label>
<input type="checkbox" name="system.raceskill" {{checked system.raceskill}}/>
</li>
2023-02-06 07:37:39 +01:00
<li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.isclassskill"}}</label>
<input type="checkbox" name="system.classskill" {{checked system.classskill}}/>
</li>
2023-01-04 21:24:56 +01:00
2023-02-07 15:18:00 +01:00
<li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.unlimited"}}</label>
<input type="checkbox" name="system.unlimited" {{checked system.unlimited}}/>
</li>
2023-02-20 10:16:17 +01:00
<li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.skilllevelacquired"}}</label>
<input type="text" class="item-field-label-medium " name="system.acquiredatlevel" value="{{system.acquiredatlevel}}" data-dtype="Number"/>
</li>
2023-02-07 15:18:00 +01:00
{{#if system.unlimited}}
2023-02-06 07:37:39 +01:00
2023-02-07 15:18:00 +01:00
{{else}}
<li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.currentuse"}}</label>
<input type="text" class="item-field-label-medium " name="system.currentuse" value="{{system.currentuse}}" data-dtype="Number"/>
</li>
<li class="flexrow"><label class="item-field-label-long ">{{localize "WH.ui.maxuse"}}</label>
<input type="text" class="item-field-label-medium " name="system.maxuse" value="{{system.maxuse}}" data-dtype="Number"/>
</li>
2023-02-06 07:37:39 +01:00
{{/if}}
</ul>
</div>
2023-01-04 21:24:56 +01:00
</section>
</form>