fvtt-never-stop-blowing-up/templates/actor/actor-character-sheet.html

70 lines
2.6 KiB
HTML
Raw Normal View History

2024-09-22 16:28:59 +02:00
<form class="{{cssClass}} {{actor.type}} flexcol" autocomplete="off">
{{!-- Sheet Header --}}
<header class="sheet-header">
<img class="profile-img" src="{{actor.img}}" data-edit="img" title="{{actor.name}}" height="100" width="100"/>
<div class="header-fields">
<h1 class="charname"><input name="name" type="text" value="{{actor.name}}" placeholder="Name"/></h1>
<div class="resources grid">
<div class="resource flex-group-center">
<label for="system.trope" class="resource-label">Trope</label>
<div class="resource-content flexrow flex-center flex-between">
<input type="text" name="system.trope" value="{{system.trope}}" data-dtype="String"/>
</div>
</div>
</div>
</div>
</header>
{{!-- Sheet Tab Navigation --}}
<nav class="sheet-tabs tabs" data-group="primary">
{{!-- Default tab is specified in actor-sheet.mjs --}}
<a class="item" data-tab="features">Features</a>
<a class="item" data-tab="schoolbag">School Bag</a>
<a class="item" data-tab="strengths">Strengths</a>
<a class="item" data-tab="trope">Trope Questions</a>
</nav>
{{!-- Sheet Body --}}
<section class="sheet-body">
{{!-- Owned Features Tab --}}
<div class="tab features" data-group="primary" data-tab="features">
<section class="grid grid-3col">
<section class="main grid-span-2">
2024-09-26 02:35:05 +02:00
{{> "systems/kidsonbrooms/templates/actor/parts/actor-features.html"}}
{{> "systems/kidsonbrooms/templates/actor/parts/actor-adversity.html"}}
2024-09-22 16:28:59 +02:00
</section>
<aside class="sidebar">
2024-09-26 02:35:05 +02:00
{{> "systems/kidsonbrooms/templates/actor/parts/actor-stats.html"}}
2024-09-22 16:28:59 +02:00
</aside>
</section>
</div>
2024-10-07 10:03:34 +02:00
<div class="tab schoolbag" data-group="primary" data-tab="schoolbag">
{{!-- Schoolbag Tab --}}
<div class="tab features editor-border" data-group="primary" data-tab="schoolbag">
{{editor schoolbag target="system.schoolbag" engine="prosemirror" button=false collaborate=false editable=true}}
</div>
2024-09-22 16:28:59 +02:00
</div>
2024-10-07 10:03:34 +02:00
2024-09-22 16:28:59 +02:00
{{!-- Strengths Tab --}}
<div class="tab features editor-border" data-group="primary" data-tab="strengths">
{{editor strengths target="system.strengths" engine="prosemirror" button=false collaborate=false editable=true}}
</div>
{{!-- Trope Questions Tab --}}
<div class="tab features editor-border" data-group="primary" data-tab="trope">
{{editor tropequestions target="system.tropequestions" engine="prosemirror" button=false collaborate=false editable=true}}
</div>
</section>
</form>