70 lines
3.1 KiB
HTML
70 lines
3.1 KiB
HTML
<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">
|
|
|
|
<div class="flexcol">
|
|
<span class="flexrow">
|
|
<label class="generic-label">{{localize "MNBL.level"}} : </label>
|
|
<input type="text" class="padd-right status-small-label color-class-common" name="system.niveau"
|
|
value="{{data.niveau}}" data-dtype="Number" />
|
|
</span>
|
|
<span class="flexrow">
|
|
<label class="generic-label">{{localize "MNBL.attribute"}} 1 : </label>
|
|
<select class="status-small-label color-class-common" type="text" name="system.attribut1"
|
|
value="{{data.attribut1}}" data-dtype="string">
|
|
{{selectOptions config.attributs selected=data.attribut1}}
|
|
</select>
|
|
</span>
|
|
<span class="flexrow">
|
|
<label class="generic-label">{{localize "MNBL.attribute"}} 2 : </label>
|
|
<select class="status-small-label color-class-common" type="text" name="system.attribut2"
|
|
value="{{data.attribut2}}" data-dtype="string">
|
|
<option value="none">Aucun</option>
|
|
{{selectOptions config.attributs selected=data.attribut2}}
|
|
</select>
|
|
</span>
|
|
<span class="flexrow">
|
|
<label class="generic-label">{{localize "MNBL.attribute"}} 3 : </label>
|
|
<select class="status-small-label color-class-common" type="text" name="system.attribut3"
|
|
value="{{data.attribut3}}" data-dtype="string">
|
|
<option value="none">Aucun</option>
|
|
{{selectOptions config.attributs selected=data.attribut3}}
|
|
</select>
|
|
</span>
|
|
|
|
<span class="flexrow">
|
|
<label class="generic-label">{{localize "MNBL.candoublebonusskill"}} ? </label>
|
|
<input class="" type="checkbox" name="system.doublebonus" {{checked data.doublebonus}}/>
|
|
</span>
|
|
|
|
<span class="flexrow">
|
|
<h3> {{localize "MNBL.predilections"}}
|
|
</h3>
|
|
</span>
|
|
<ul>
|
|
{{#each data.predilections as |predilection key|}}
|
|
<li class="prediction-item item flexrow" data-prediction-index="{{key}}">
|
|
<input type="text" class="padd-right color-class-common edit-prediction"
|
|
name="system.predilections[{{key}}]" value="{{predilection.name}}" data-dtype="String" />
|
|
<label class="generic-label">Utilisée ? <input class="use-prediction" type="checkbox" name="predilection.used" {{checked predilection.used}} /></label>
|
|
<a class="item-control delete-prediction" title="Supprimer une predilection"><i class="fas fa-trash"></i></a>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
<span class="flexrow">
|
|
<button id="add-predilection" class="chat-card-button">{{localize "MNBL.addpredilection"}}</button>
|
|
</span>
|
|
|
|
{{> systems/fvtt-mournblade/templates/partial-item-description.html}}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
</form> |