Fix wrong sheets

This commit is contained in:
2025-10-26 14:44:06 +01:00
parent a39d214f1b
commit f5a5c25533
126 changed files with 563 additions and 303 deletions

View File

@@ -1,39 +1,63 @@
<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-mournblade-cyd2/templates/partial-item-header.html}} {{>
systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}} {{!-- Sheet
Body --}} {{!-- Sheet Body --}}
{{!-- Sheet Body --}}
<section class="sheet-body">
<div class="flexcol">
<span class="flexrow">
<label class="generic-label">{{localize "MNBL.highlanguage"}} : </label>
<input type="text" class="padd-right status-small-label color-class-common" name="system.formule" value="{{data.formule}}" data-dtype="String" />
</span>
<span class="flexrow">
<label class="generic-label">{{localize "MNBL.difficulty"}} : </label>
<input type="text" class="padd-right status-small-label color-class-common" name="system.seuil" value="{{data.seuil}}" data-dtype="Number" />
</span>
<span class="flexrow">
<label class="generic-label">{{localize "MNBL.pronouncedrune"}} : </label>
</span>
<span class="flexrow">
<input type="text" class="padd-right status-small-label color-class-common" name="system.prononcee" value="{{data.prononcee}}" data-dtype="String" />
</span>
<span class="flexrow">
<label class="generic-label">{{localize "MNBL.tracedrune"}} : </label>
</span>
<span class="flexrow">
<input type="text" class="padd-right status-small-label color-class-common" name="system.tracee" value="{{data.tracee}}" data-dtype="String" />
</span>
<section class="sheet-body">
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
<div class="tab details" data-group="primary" data-tab="details">
<ul class="item-list alternate-list">
<li class="flexrow item">
<label class="generic-label item-field-label-long"
>Haut-Parler :
</label>
<input
type="text"
class="padd-right status-small-label color-class-common item-field-label-long"
name="system.formule"
value="{{system.formule}}"
data-dtype="String"
/>
</li>
<li class="flexrow item">
<label class="generic-label item-field-label-long"
>Difficulté :
</label>
<input
type="text"
class="padd-right status-small-label color-class-common item-field-label-long"
name="system.seuil"
value="{{system.seuil}}"
data-dtype="Number"
/>
</li>
<li class="flexrow item">
<label class="generic-label item-field-label-long"
>Rune prononcée :
</label>
<input
type="text"
class="padd-right status-small-label color-class-common item-field-label-long2"
name="system.prononcee"
value="{{system.prononcee}}"
data-dtype="String"
/>
</li>
<li class="flexrow item">
<label class="generic-label item-field-label-long"
>Rune tracée :
</label>
<input
type="text"
class="padd-right status-small-label color-class-common item-field-label-long2"
name="system.tracee"
value="{{system.tracee}}"
data-dtype="String"
/>
</li>
</ul>
</div>
</section>
</section>
</form>