40 lines
1.5 KiB
HTML
40 lines
1.5 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">Allégeance : </label>
|
|
<select class="status-small-label color-class-common" type="text" name="data.allegeance" value="{{data.allegeance}}" data-dtype="string" >
|
|
{{#select data.allegeance}}
|
|
<option value="chaos">Chaos</option>
|
|
<option value="loi">Loi</option>
|
|
<option value="betes">Seigneurs de Bêtes</option>
|
|
{{/select}}
|
|
</select>
|
|
</span>
|
|
<span class="flexrow">
|
|
<label class="generic-label">Prérequis : </label>
|
|
<input type="text" class="padd-right status-small-label color-class-common" name="data.prerequis" value="{{data.prerequis}}" data-dtype="String" />
|
|
</span>
|
|
<span class="flexrow">
|
|
<label class="generic-label">Sacrifice : </label>
|
|
<div class="small-editor item-text-long-line">
|
|
{{editor content=data.sacrifice target="data.sacrifice" button=true owner=owner editable=editable}}
|
|
</div>
|
|
</span>
|
|
|
|
{{> systems/fvtt-mournblade/templates/partial-item-description.html}}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
</form>
|