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

22 lines
808 B
HTML
Raw Normal View History

2020-11-09 23:56:25 +01:00
<form class="{{cssClass}}" autocomplete="off">
2022-09-16 02:20:46 +02:00
{{>"systems/foundryvtt-reve-de-dragon/templates/header-item.html"}}
{{!-- Sheet Body --}}
<section class="sheet-body">
<div class="flexcol">
<div class="form-group">
<label>Aspect</label>
<input class="attribute-value" type="text" name="system.concept" value="{{system.concept}}" data-dtype="String" />
</div>
<div class="form-group">
<label>Sens</label>
<select name="system.aspect" id="aspect" data-dtype="String">
{{#select system.aspect}}
{{>"systems/foundryvtt-reve-de-dragon/templates/enum-aspect-tarot.html"}}
{{/select}}
</select>
</div>
2022-09-16 02:20:46 +02:00
{{>"systems/foundryvtt-reve-de-dragon/templates/partial-item-description.html"}}
</section>
2020-11-09 23:56:25 +01:00
</form>