This repository has been archived on 2023-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
fvtt-avd12/templates/items/item-spell-sheet.hbs

46 lines
1.5 KiB
Handlebars
Raw Normal View History

2022-11-03 20:01:45 +01:00
<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>
{{> systems/fvtt-avd12/templates/items/partial-item-nav.hbs}}
{{!-- Sheet Body --}}
<section class="sheet-body">
{{> systems/fvtt-avd12/templates/items/partial-item-description.hbs}}
<div class="tab details" data-group="primary" data-tab="details">
<div class="tab" data-group="primary">
<ul>
<li class="flexrow">
<label class="item-field-label-long">Type</label>
<select class="item-field-label-long" type="text" name="system.spelltype" value="{{system.spelltype}}" data-dtype="String">
{{#select system.spelltype}}
{{> systems/fvtt-avd12/templates/items/partial-options-spell-types.hbs}}
{{/select}}
</select>
</li>
<li class="flexrow">
<label class="item-field-label-long">Level</label>
2022-11-03 21:18:51 +01:00
<select class="item-field-label-long" type="text" name="system.level" value="{{system.level}}" data-dtype="String">
{{#select system.level}}
{{> systems/fvtt-avd12/templates/items/partial-options-spell-levels.hbs}}
{{/select}}
</select>
2022-11-03 20:01:45 +01:00
</li>
</ul>
</div>
</div>
</section>
</form>