84 lines
3.7 KiB
HTML
84 lines
3.7 KiB
HTML
<form class="{{cssClass}} {{actor.type}} flexcol" autocomplete="off">
|
|
<div class="form">
|
|
<aside>
|
|
<img class="logo" src="systems/totem/assets/images/ui/logo.webp" height="56" width="230" alt="logo TOTEM" />
|
|
<div class="sidebar" data-group="dashboard" data-tab="sidebar">
|
|
<!--ID -->
|
|
{{> "systems/totem/templates/actor/parts/actor-id.hbs"}}
|
|
</div>
|
|
</aside>
|
|
<main>
|
|
<!-- HEADER -->
|
|
{{> "systems/totem/templates/actor/parts/character-header.hbs"}}
|
|
|
|
<!-- SHEET NAVIGATION -->
|
|
<nav class="sheet-navigation sheet-tabs tabs flex-group-end" data-group="primary">
|
|
<a class="item" data-tab="character" title="{{localize "TOTEM.tab_character_label"}}">
|
|
<i class="fas fa-address-card"></i>
|
|
</a>
|
|
|
|
<a class="item" data-tab="instincts" title="{{localize "TOTEM.tab_instincts_label"}}">
|
|
<i class="fas fa-star"></i>
|
|
</a>
|
|
<a class="item" data-tab="equipment" title="{{localize "TOTEM.tab_equipment_label"}}">
|
|
<i class="fas fa-hammer"></i>
|
|
</a>
|
|
|
|
<a class="item" data-tab="stories" title="{{localize "TOTEM.tab_stories_label"}}">
|
|
<i class="fas fa-hand-paper"></i>
|
|
</a>
|
|
|
|
<a class="item" data-tab="combat" title="{{localize "TOTEM.tab_combat_label"}}">
|
|
<i class="fas fa-medal"></i>
|
|
</a>
|
|
|
|
<a class="manage-tabs" data-action="manage-tabs" title="{{localize "TOTEM.tab_options"}}">
|
|
<i class="fas fa-fw fa-ellipsis-v"></i>
|
|
</a>
|
|
</nav>
|
|
|
|
<!-- BODY -->
|
|
<section class="sheet-body">
|
|
<section class="sheet-content">
|
|
<div class="tab character character-pane active" data-group="primary" data-tab="character">
|
|
<!-- Character -->
|
|
{{> "systems/totem/templates/actor/parts/character-features.hbs"}}
|
|
</div>
|
|
<div class="tab totem" data-group="primary" data-tab="totem">
|
|
<h3>Totem</h3>
|
|
{{> "systems/totem/templates/actor/parts/actor-totem.hbs"}}
|
|
</div>
|
|
<div class="tab equipment" data-group="primary" data-tab="equipment">
|
|
<h3>Equipement</h3>
|
|
<!-- Rituals -->
|
|
{{> "systems/totem/templates/actor/parts/actor-items.html"}}
|
|
</div>
|
|
<div class="tab combat" data-group="primary" data-tab="combat">
|
|
<h3>Combat</h3>
|
|
<!-- effects -->
|
|
{{> "systems/totem/templates/actor/parts/actor-effects.html"}}
|
|
</div>
|
|
|
|
<div class="tab stories" data-group="primary" data-tab="stories">
|
|
<h3>Histoire</h3>
|
|
<h4>{{ localize 'IDENTITY.theme'}}</h4>
|
|
{{editor system.identity.theme target="system.identity.theme" button=true owner=owner}}
|
|
<h4>{{ localize 'IDENTITY.instincts'}}</h4>
|
|
{{editor system.identity.instincts target="system.identity.instincts" button=true owner=owner editable=editable}}
|
|
<h4>{{ localize 'IDENTITY.prohibits'}}</h4>
|
|
{{editor system.identity.prohibits target="system.identity.prohibits" button=true owner=owner editable=editable}}
|
|
<h4>{{ localize 'IDENTITY.objectives'}}</h4>
|
|
{{editor system.identity.objectives target="system.identity.objectives" button=true owner=owner editable=editable}}
|
|
<h4>{{ localize 'IDENTITY.relations'}}</h4>
|
|
{{editor system.identity.relations target="system.identity.relations" button=true owner=owner editable=editable}}
|
|
<h4>{{ localize 'IDENTITY.biography'}}</h4>
|
|
{{editor system.identity.biography target="system.identity.biography" button=true owner=owner editable=editable}}
|
|
</div>
|
|
|
|
</section>
|
|
</section>
|
|
</main>
|
|
</div>
|
|
</form>
|
|
|