2021-02-02 22:05:38 +01:00
|
|
|
<form class="{{cssClass}}" autocomplete="off">
|
|
|
|
<header class="sheet-header">
|
2021-03-25 09:28:36 +01:00
|
|
|
<img class="profile-img" src="{{img}}" data-edit="img" title="{{name}}"/>
|
2021-02-02 22:05:38 +01:00
|
|
|
<div class="header-fields">
|
2021-03-25 09:28:36 +01:00
|
|
|
<h1 class="charname"><input name="name" type="text" value="{{name}}" placeholder="Name"/></h1>
|
2021-02-02 22:05:38 +01:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
{{!-- Sheet Body --}}
|
|
|
|
<section class="sheet-body">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="xp">Malignité </label>
|
|
|
|
<input class="attribute-value" type="text" name="data.malignite" value="{{data.malignite}}" data-dtype="Number"/>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="xp">Périodicité</label>
|
|
|
|
<input class="attribute-value" type="text" name="data.periodicite" value="{{data.periodicite}}" data-dtype="String"/>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="xp">Dommages</label>
|
|
|
|
<input class="attribute-value" type="text" name="data.dommages" value="{{data.dommages}}" data-dtype="String"/>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="xp">Remèdes </label>
|
|
|
|
<input class="attribute-value" type="text" name="data.remedes" value="{{data.remedes}}" data-dtype="String"/>
|
|
|
|
</div>
|
|
|
|
<div class="flexcol">
|
|
|
|
<span><label>Description : </label></span>
|
|
|
|
<div class="form-group editor">
|
|
|
|
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
</form>
|