35 lines
1.4 KiB
Handlebars
35 lines
1.4 KiB
Handlebars
<section class="{{cssClass}} sortgaldr-sheet" autocomplete="off">
|
|
<header class="sheet-header">
|
|
<img class="profile-img" src="{{item.img}}" data-action="editImage" title="{{item.name}}"/>
|
|
<div class="header-fields">
|
|
<h1 class="charname"><input name="item.name" type="text" value="{{item.name}}" placeholder="Nom du Sort Galdr"/></h1>
|
|
</div>
|
|
</header>
|
|
<div class="header-separator"></div>
|
|
<section class="sheet-body">
|
|
<div class="tab" data-group="primary">
|
|
<div class="properties-grid">
|
|
<div class="property-group">
|
|
<label class="property-label">Voie</label>
|
|
<select class="property-input" name="system.voie" value="{{data.voie}}" data-dtype="String">
|
|
{{selectOptions config.optionsGaldr selected=data.voie valueAttr="key" labelAttr="label"}}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="property-group">
|
|
<label class="property-label">SD</label>
|
|
<input class="property-input" type="text" name="system.sd" value="{{data.sd}}" data-dtype="Number"/>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="description-section">
|
|
<h3 class="section-title">Description & Effets</h3>
|
|
<div class="description-content">
|
|
{{formInput systemFields.description enriched=enrichedDescription value=system.description name="system.description" toggled=true}}
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</section>
|