foundryvtt-reve-de-dragon/templates/item-recettealchimique-sheet.html

48 lines
1.9 KiB
HTML
Raw Normal View History

2021-01-07 20:04:10 +01:00
<form class="{{cssClass}}" autocomplete="off">
<header class="sheet-header">
<img class="profile-img" src="{{item.img}}" data-edit="img" title="{{item.name}}"/>
<div class="header-fields">
<h1 class="charname"><input name="name" type="text" value="{{item.name}}" placeholder="Name"/></h1>
</div>
</header>
{{!-- Sheet Body --}}
<section class="sheet-body">
<div class="form-group">
<label for="xp">But</label>
<input class="attribute-value" type="text" name="data.but" value="{{data.but}}" data-dtype="String"/>
</div>
<div class="flexcol">
<span><label>Manipulation : </label></span>
<div class="form-group small-editor">
{{editor content=data.manipulation_update target="data.manipulation" button=true owner=owner editable=editable}}
</div>
</div>
<div class="flexcol">
<span><label>Utilisation : </label></span>
<div class="form-group small-editor">
{{editor content=data.utilisation target="data.utilisation" button=true owner=owner editable=editable}}
</div>
</div>
<div class="flexcol">
<span><label>Enchantement : </label></span>
<div class="form-group small-editor">
{{editor content=data.enchantement target="data.enchantement" button=true owner=owner editable=editable}}
</div>
</div>
<div class="flexcol">
<span><label>Sur-effet : </label></span>
<div class="form-group small-editor">
{{editor content=data.sureffet target="data.sureffet" button=true owner=owner editable=editable}}
</div>
</div>
<div class="flexcol">
<span><label>Notes additionnelles : </label></span>
<div class="form-group editor">
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
</div>
</div>
</section>
</form>