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">
|
2021-01-07 23:58:44 +01:00
|
|
|
<label class="alchimie-title" for="xp">But</label>
|
2021-01-07 20:04:10 +01:00
|
|
|
<input class="attribute-value" type="text" name="data.but" value="{{data.but}}" data-dtype="String"/>
|
|
|
|
</div>
|
|
|
|
<div class="flexcol">
|
2021-01-07 23:58:44 +01:00
|
|
|
<span><label class="alchimie-title">Manipulation : </label></span>
|
2021-01-07 23:40:20 +01:00
|
|
|
<div class="form-group medium-editor">
|
2021-01-07 20:04:10 +01:00
|
|
|
{{editor content=data.manipulation_update target="data.manipulation" button=true owner=owner editable=editable}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="flexcol">
|
2021-01-07 23:58:44 +01:00
|
|
|
<span><label class="alchimie-title">Utilisation : </label></span>
|
2021-01-07 20:04:10 +01:00
|
|
|
<div class="form-group small-editor">
|
|
|
|
{{editor content=data.utilisation target="data.utilisation" button=true owner=owner editable=editable}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="flexcol">
|
2021-01-07 23:58:44 +01:00
|
|
|
<span><label class="alchimie-title">Enchantement : </label></span>
|
2021-01-07 20:04:10 +01:00
|
|
|
<div class="form-group small-editor">
|
|
|
|
{{editor content=data.enchantement target="data.enchantement" button=true owner=owner editable=editable}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="flexcol">
|
2021-01-07 23:58:44 +01:00
|
|
|
<span><label class="alchimie-title">Sur-effet : </label></span>
|
2021-01-07 20:04:10 +01:00
|
|
|
<div class="form-group small-editor">
|
|
|
|
{{editor content=data.sureffet target="data.sureffet" button=true owner=owner editable=editable}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="flexcol">
|
2021-01-07 23:58:44 +01:00
|
|
|
<span><label class="alchimie-title">Notes additionnelles : </label></span>
|
2021-01-07 20:04:10 +01:00
|
|
|
<div class="form-group editor">
|
|
|
|
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
</form>
|