2020-12-30 18:12:01 +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}}"/>
|
2020-12-30 18:12:01 +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>
|
2020-12-30 18:12:01 +01:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
{{!-- Sheet Body --}}
|
|
|
|
<section class="sheet-body">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="niveau">Coordonnées TMR </label>
|
|
|
|
<input class="attribute-value" type="text" name="data.coord" value="{{data.coord}}" data-dtype="String"/>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="niveau">Mode spécifique</label>
|
2020-12-30 21:17:58 +01:00
|
|
|
<select name="data.specific" id="specific" data-dtype="String">
|
|
|
|
{{#select item.data.specific}}
|
|
|
|
{{>"systems/foundryvtt-reve-de-dragon/templates/casetmr-specific-list.html"}}
|
|
|
|
{{/select}}
|
|
|
|
</select>
|
2020-12-30 18:12:01 +01:00
|
|
|
</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>
|