2021-01-21 17:16:01 +01:00
|
|
|
<form class="{{cssClass}}" autocomplete="off">
|
|
|
|
<header class="sheet-header">
|
2022-07-13 08:11:00 +02:00
|
|
|
<img class="profile-img" src="{{img}}" data-edit="img" title="{{name}}"/>
|
2021-01-21 17:16:01 +01:00
|
|
|
<div class="header-fields">
|
2022-07-13 08:11:00 +02:00
|
|
|
<h1 class="charname"><input name="name" type="text" value="{{name}}" placeholder="Name"/></h1>
|
2021-01-21 17:16:01 +01:00
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
{{!-- Sheet Body --}}
|
|
|
|
<section class="sheet-body">
|
|
|
|
|
|
|
|
<div class="tab" data-group="primary">
|
|
|
|
<div class="flexcol">
|
|
|
|
<label class="generic-label">Severity</label>
|
|
|
|
<div class="form-group small-editor">
|
2022-07-13 08:11:00 +02:00
|
|
|
<select class="stat-value flexrow" type="text" name="system.severity" value="{{data.severity}}" data-dtype="String">
|
|
|
|
{{#select data.severity}}
|
2021-01-21 17:16:01 +01:00
|
|
|
<option value="none">None</option>
|
|
|
|
<option value="light">Light</option>
|
|
|
|
<option value="moderate">Moderate</option>
|
|
|
|
<option value="severe">Severe</option>
|
|
|
|
<option value="critical">Critical</option>
|
|
|
|
{{/select}}
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="flexcol">
|
|
|
|
<label class="generic-label">Description</label>
|
|
|
|
<div class="form-group medium-editor">
|
2022-07-13 08:11:00 +02:00
|
|
|
{{editor data.description target="system.description" button=true owner=owner editable=editable}}
|
2021-01-21 17:16:01 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</section>
|
|
|
|
</form>
|