Fix wrong sheets
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
<ul class="item-list alternate-list">
|
||||
|
||||
<li class="item flexrow ">
|
||||
<h4 class="item-name-label competence-name item-field-label-short">Loi</h4>
|
||||
<h4 class="item-name-label competence-name item-field-label-short" {{#if (gt system.balance.loi system.balance.chaos)}}style="color: red;"{{/if}}>Loi</h4>
|
||||
<label class="item-name-label competence-name item-field-label-short">Niveau</label>
|
||||
<input type="text" class="padd-right status-small-label color-class-common item-field-label-short"
|
||||
name="system.balance.loi" value="{{system.balance.loi}}" data-dtype="Number" />
|
||||
@@ -25,7 +25,7 @@
|
||||
</li>
|
||||
|
||||
<li class="item flexrow ">
|
||||
<h4 class="item-name-label competence-name item-field-label-short">Chaos</h4>
|
||||
<h4 class="item-name-label competence-name item-field-label-short" {{#if (gt system.balance.chaos system.balance.loi)}}style="color: red;"{{/if}}>Chaos</h4>
|
||||
<label class="item-name-label competence-name item-field-label-short">Niveau</label>
|
||||
<input type="text" class="padd-right status-small-label color-class-common item-field-label-short"
|
||||
name="system.balance.chaos" value="{{system.balance.chaos}}" data-dtype="Number" />
|
||||
|
||||
@@ -1,37 +1,46 @@
|
||||
<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>
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-header.html}} {{>
|
||||
systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}} {{!-- Sheet
|
||||
Body --}}
|
||||
|
||||
<section class="sheet-body">
|
||||
{{> 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">Allégeance : </label>
|
||||
<select
|
||||
class="status-small-label color-class-common item-field-label-long"
|
||||
type="text"
|
||||
name="system.allegeance"
|
||||
value="{{system.allegeance}}"
|
||||
data-dtype="string"
|
||||
>
|
||||
{{selectOptions config.allegeanceOptions selected=system.allegeance}}
|
||||
</select>
|
||||
</li>
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long">Prérequis : </label>
|
||||
<input
|
||||
type="text"
|
||||
class="status-small-label color-class-common item-field-label-long2"
|
||||
name="system.prerequis"
|
||||
value="{{system.prerequis}}"
|
||||
data-dtype="String"
|
||||
/>
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<h3>Sacrifices</h3>
|
||||
|
||||
<div class="small-editor item-text-long-line">
|
||||
{{editor sacrifice target="system.sacrifice" button=true owner=owner
|
||||
editable=editable}}
|
||||
</div>
|
||||
</header>
|
||||
|
||||
{{!-- Sheet Body --}}
|
||||
<section class="sheet-body">
|
||||
|
||||
<div class="flexcol">
|
||||
<span class="flexrow">
|
||||
<label class="generic-label">{{localize "MNBL.allegiance"}} : </label>
|
||||
<select class="status-small-label color-class-common" type="text" name="system.allegeance" value="{{data.allegeance}}" data-dtype="string" >
|
||||
{{selectOptions config.allegeanceOptions selected=data.allegeance}}
|
||||
</select>
|
||||
</span>
|
||||
<span class="flexrow">
|
||||
<label class="generic-label">{{localize "MNBL.prerequisites"}} : </label>
|
||||
<input type="text" class="padd-right status-small-label color-class-common" name="system.prerequis" value="{{data.prerequis}}" data-dtype="String" />
|
||||
</span>
|
||||
|
||||
<span>
|
||||
<h3>Sacrifices</h3>
|
||||
</span>
|
||||
|
||||
<div class="small-editor item-text-long-line">
|
||||
{{editor sacrifice target="system.sacrifice" button=true owner=owner editable=editable}}
|
||||
</div>
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</section>
|
||||
</form>
|
||||
|
||||
@@ -1,25 +1,29 @@
|
||||
<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 --}}
|
||||
<section class="sheet-body">
|
||||
|
||||
<div class="flexcol">
|
||||
<span class="flexrow">
|
||||
<label class="generic-label">{{localize "MNBL.allegiance"}} : </label>
|
||||
<select class="status-small-label color-class-common" type="text" name="system.allegeance" value="{{data.allegeance}}" data-dtype="string" >
|
||||
{{selectOptions config.allegeanceOptions selected=data.allegeance}}
|
||||
</select>
|
||||
</span>
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
<section class="sheet-body">
|
||||
{{> 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"
|
||||
>Allégeance :
|
||||
</label>
|
||||
<select
|
||||
class="padd-right status-small-label color-class-common item-field-label-long"
|
||||
type="text"
|
||||
name="system.allegeance"
|
||||
value="{{system.allegeance}}"
|
||||
data-dtype="string"
|
||||
>
|
||||
{{selectOptions config.allegeanceOptions
|
||||
selected=system.allegeance}}
|
||||
</select>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</section>
|
||||
</form>
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -1,41 +1,62 @@
|
||||
<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>
|
||||
|
||||
{{!-- Sheet Body --}}
|
||||
<section class="sheet-body">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-header.html}} {{>
|
||||
systems/fvtt-mournblade-cyd2/templates/partial-item-nav.html}} {{!-- Sheet
|
||||
Body --}} {{!-- Sheet Body --}}
|
||||
|
||||
<span class="flexrow">
|
||||
<label class="generic-label">Rune </label>
|
||||
<input type="text" class="padd-right status-small-label color-class-common" name="system.rune" value="{{data.rune}}" data-dtype="String" />
|
||||
</span>
|
||||
<section class="sheet-body">
|
||||
|
||||
<span class="flexrow">
|
||||
<label class="generic-label">Mode </label>
|
||||
<select class="status-small-label color-class-common" type="text" name="system.mode"
|
||||
value="{{data.mode}}" data-dtype="string">
|
||||
{{selectOptions config.effetRuneOptions selected=data.mode}}
|
||||
</select>
|
||||
</span>
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
|
||||
<span class="flexrow">
|
||||
<label class="generic-label">{{localize "MNBL.soulpoints"}} </label>
|
||||
<input type="text" class="padd-right status-small-label color-class-common" name="system.pointame" value="{{data.pointame}}" data-dtype="Number" />
|
||||
</span>
|
||||
<div class="tab details" data-group="primary" data-tab="details">
|
||||
|
||||
<span class="flexrow">
|
||||
<label class="generic-label">{{localize "MNBL.duration"}} </label>
|
||||
<input type="text" class="padd-right status-small-label color-class-common" name="system.duree" value="{{data.duree}}" data-dtype="String" />
|
||||
</span>
|
||||
<ul class="item-list alternate-list">
|
||||
|
||||
<div class="flexcol">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long">Rune </label>
|
||||
<input
|
||||
type="text"
|
||||
class="padd-right status-small-label color-class-common item-field-label-long"
|
||||
name="system.rune"
|
||||
value="{{data.rune}}"
|
||||
data-dtype="String"
|
||||
/>
|
||||
</li>
|
||||
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long">Mode </label>
|
||||
<select
|
||||
class="status-small-label color-class-common item-field-label-long"
|
||||
type="text"
|
||||
name="system.mode"
|
||||
value="{{data.mode}}"
|
||||
data-dtype="string"
|
||||
>
|
||||
{{selectOptions config.effetRuneOptions selected=data.mode}}
|
||||
</select>
|
||||
</li>
|
||||
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long">Point d'âme </label>
|
||||
<input
|
||||
type="text"
|
||||
class="status-small-label color-class-common item-field-label-long"
|
||||
name="system.pointame"
|
||||
value="{{data.pointame}}"
|
||||
data-dtype="Number"
|
||||
/>
|
||||
</li>
|
||||
|
||||
<li class="flexrow item">
|
||||
<label class="generic-label item-field-label-long">Durée </label>
|
||||
<input
|
||||
type="text"
|
||||
class="status-small-label color-class-common item-field-label-long"
|
||||
name="system.duree"
|
||||
value="{{data.duree}}"
|
||||
data-dtype="String"
|
||||
/>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</form>
|
||||
|
||||
@@ -1,25 +1,29 @@
|
||||
<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 --}}
|
||||
<section class="sheet-body">
|
||||
|
||||
<div class="flexcol">
|
||||
<span class="flexrow">
|
||||
<label class="generic-label">{{localize "MNBL.allegiance"}} : </label>
|
||||
<select class="status-small-label color-class-common" type="text" name="system.allegeance" value="{{data.allegeance}}" data-dtype="string" >
|
||||
{{selectOptions config.allegeanceOptions selected=data.allegeance}}
|
||||
</select>
|
||||
</span>
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
<section class="sheet-body">
|
||||
{{> 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"
|
||||
>Allégeance :
|
||||
</label>
|
||||
<select
|
||||
class="padd-right status-small-label color-class-common item-field-label-long"
|
||||
type="text"
|
||||
name="system.allegeance"
|
||||
value="{{system.allegeance}}"
|
||||
data-dtype="string"
|
||||
>
|
||||
{{selectOptions config.allegeanceOptions
|
||||
selected=system.allegeance}}
|
||||
</select>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</section>
|
||||
</form>
|
||||
|
||||
@@ -1,19 +1,12 @@
|
||||
<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 --}}
|
||||
<section class="sheet-body">
|
||||
<section class="sheet-body">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
|
||||
<div class="tab details" data-group="primary" data-tab="details"></div>
|
||||
|
||||
<div class="flexcol">
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
</section>
|
||||
</form>
|
||||
|
||||
@@ -1,19 +1,11 @@
|
||||
<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 --}}
|
||||
<section class="sheet-body">
|
||||
|
||||
<div class="flexcol">
|
||||
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
<section class="sheet-body">
|
||||
{{> systems/fvtt-mournblade-cyd2/templates/partial-item-description.html}}
|
||||
|
||||
</div>
|
||||
|
||||
</section>
|
||||
<div class="tab details" data-group="primary" data-tab="details"></div>
|
||||
</section>
|
||||
</form>
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{{!-- Sheet Tab Navigation --}}
|
||||
<hr />
|
||||
<nav class="sheet-tabs tabs" data-group="primary">
|
||||
<a class="item" data-tab="description">Description</a>
|
||||
<a class="item" data-tab="details">Details</a>
|
||||
</nav>
|
||||
<hr />
|
||||
|
||||
Reference in New Issue
Block a user