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

20 lines
703 B
HTML
Raw Normal View History

2020-07-14 22:19:29 +02: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">
2020-11-07 23:31:18 +01:00
<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>
2020-07-14 22:19:29 +02:00
</div>
</section>
</form>