31 lines
1023 B
HTML
31 lines
1023 B
HTML
<form class="{{cssClass}}" autocomplete="off">
|
|
<header class="sheet-header">
|
|
<img class="item-sheet-img" src="{{img}}" data-edit="img" title="{{name}}" />
|
|
<div class="header-fields">
|
|
<h1 class="charname"><input name="name" type="text" value="{{name}}" placeholder="Name" /></h1>
|
|
</div>
|
|
</header>
|
|
|
|
{{!-- Sheet Body --}}
|
|
<section class="sheet-body">
|
|
|
|
<div class="flexcol">
|
|
|
|
<div class="flexcol">
|
|
<span class="flexrow">
|
|
<label class="generic-label">Type : </label>
|
|
<select class="status-small-label color-class-common" type="text" name="system.hubristype" value="{{system.hubristype}}" data-dtype="string" >
|
|
{{#select system.hubristype}}
|
|
{{#each config.hubrisType as |label key|}}
|
|
<option value="{{key}}">{{label}}</option>
|
|
{{/each}}
|
|
{{/select}}
|
|
</select>
|
|
</span>
|
|
|
|
{{> systems/fvtt-wasteland/templates/partial-item-description.html}}
|
|
|
|
</div>
|
|
|
|
</section>
|
|
</form> |