Various enhancements

This commit is contained in:
2024-06-12 11:16:46 +02:00
parent dc4429f3e1
commit e92b2deacf
53 changed files with 207 additions and 151 deletions

View File

@ -0,0 +1,33 @@
<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>
{{> systems/fvtt-dark-stars/templates/partials/partial-item-nav.hbs}}
{{!-- Sheet Body --}}
<section class="sheet-body">
{{> systems/fvtt-dark-stars/templates/partials/partial-item-description.hbs}}
<div class="tab details" data-group="primary" data-tab="details">
<ul>
<li class="flexrow">
<label class="item-field-label-long">Skill</label>
<label class="item-field-label-long">{{system.skill}}</label>
</li>
<li class="flexrow">
<label class="item-field-label-long">Cumulated score</label>
<label class="item-field-label-long">{{system.cumulated}}</label>
</li>
<li class="flexrow">
<label class="item-field-label-long">Number of rolls</label>
<label class="item-field-label-long">{{system.nbrolls}}</label>
</li>
</ul>
</div>
</section>
</form>