foundryvtt-beam-saber/templates/items/crew_type.html
Peter Varaksin d8a8291fcb GH-31 Classes exp clues
- Closes #31
- Adds Exc clues to Classes
- Adds Icons to Classes
- Removes old class_item param from Class
- Fixes html styling for all simple templates
- Fixes icon for Noble Background
2020-05-04 20:18:37 +03:00

18 lines
751 B
HTML

<form class="{{cssClass}}" autocomplete="off">
<header class="sheet-header">
<img class="profile-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="Name"/></h1>
</div>
</header>
<section class="flex-vertical">
<label class="label-stripe">Description</label>
<textarea name="data.description">{{data.description}}</textarea>
<label class="label-stripe">Exp Clues</label>
<textarea name="data.experience_clues">{{data.experience_clues}}</textarea>
</section>
{{> "systems/blades-in-the-dark/templates/parts/turf-list.html" turfs_data=data.turfs can_edit=true}}
</form>