-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathmalignancy.hbs
35 lines (33 loc) · 1.44 KB
/
malignancy.hbs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<form class="{{cssClass}}" autocomplete="off">
<div class="header border">
<div class="flex row">
<div class="avatar">
<img class="profile-img" src="{{item.img}}" data-edit="img" title="{{item.name}}" />
</div>
<div class="flex column grow justify-center">
<div class="name header-row">
<label>{{localize "MALIGNANCY.NAME"}}</label>
<input name="name" type="text" value="{{item.name}}" />
</div>
</div>
</div>
</div>
<div class="sheet-tabs tabs flex row" data-group="primary">
<b class="item" data-tab="notes">{{localize "TAB.NOTES"}}</b>
<b class="item" data-tab="effects">{{localize "DH.Effect.Effect"}}</b>
</div>
<div class="sheet-body">
<div class="tab" data-group="primary" data-tab="notes">
<div class="notes-editor border">
<h1>{{localize "TITLE.NOTES"}}</h1>
<div style="height: 132px; width: 100%">
{{editor enrichment.system.description target="system.description" engine="prosemirror" button=true owner=owner editable=editable}}
</div>
</div>
</div>
{{!-- Effects Tab --}}
<div class="tab effects" data-group="primary" data-tab="effects">
{{> systems/dark-heresy/template/sheet/item/parts/effect-part.hbs}}
</div>
</div>
</form>