foundryvtt-beam-saber/templates/items/crew_upgrade.html
Olivier Grech 4d4f071417
Move profile image to the left (#93)
* Move profile image to the left on actor and crew sheets

* Remove profile-img CSS class
2020-12-16 11:52:18 +03:00

21 lines
1,000 B
HTML

<form class="{{cssClass}}" autocomplete="off">
<header class="sheet-header">
<img src="{{item.img}}" data-edit="img" title="{{item.name}}"/>
<div class="header-fields">
<h1 class="charname"><input name="name" type="text" value="{{item.name}}" placeholder="{{localize 'BITD.Name'}}"/></h1>
</div>
</header>
{{!-- Sheet Body --}}
<section class="sheet-body flex-vertical">
<label class="label-stripe">{{localize "BITD.Description"}}</label>
<textarea name="data.description">{{data.description}}</textarea>
<label class="label-stripe">{{localize "BITD.CrewType"}}</label>
<input type="text" name="data.class" value="{{data.class}}">
<label class="label-stripe">{{localize "BITD.Price"}}</label>
<input type="text" name="data.price" value="{{data.price}}">
<label class="label-stripe">{{localize "BITD.Logic"}}</label>
{{editor content=data.logic target="data.logic" button=true owner=owner editable=editable}}
</section>
</form>