9f004950f4
* Improve sheets to be able to add the french version * Update class.html Logic field should be plain text. * Update crew_ability.html Co-authored-by: megastruktur <astromortis@gmail.com>
24 lines
1.1 KiB
HTML
24 lines
1.1 KiB
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>
|
|
|
|
<section class="flex-vertical">
|
|
<label class="label-stripe">{{localize "BITD.Description"}}</label>
|
|
{{editor content=data.description target="data.description" button=true owner=owner editable=editable}}
|
|
<label class="label-stripe">{{localize "BITD.ExpClues"}}</label>
|
|
<div><i>- {{localize "BITD.ClassExpClue1"}}</i></div>
|
|
<div>{{localize "BITD.ClassExpClueDescription"}}</div>
|
|
<div><i>- {{localize "BITD.ClassExpClue2"}}</i></div>
|
|
<div><i>- {{localize "BITD.ClassExpClue3"}}</i></div>
|
|
{{editor content=data.experience_clues target="data.experience_clues" button=true owner=owner editable=editable}}
|
|
|
|
{{isG}}
|
|
<label class="label-stripe">{{localize "BITD.Logic"}}</label>
|
|
<textarea name="data.logic">{{data.logic}}</textarea>
|
|
</section>
|
|
|
|
</form>
|