Add dummy profile tab to character sheet

This commit is contained in:
Johannes Loher 2021-01-03 20:54:45 +01:00
parent c91b8956f6
commit 98ce35f831
4 changed files with 12 additions and 2 deletions

View file

@ -90,8 +90,9 @@
{{!-- Sheet Tab Navigation --}}
<nav class="sheet-tabs tabs" data-group="primary">
<a class="item" data-tab="description">Description</a>
<a class="item" data-tab="items">Items</a>
<a class="item" data-tab="description">{{localize "DS4.Description"}}</a>
<a class="item" data-tab="profile">{{localize "DS4.Profile"}}</a>
<a class="item" data-tab="items">{{localize "DS4.Items"}}</a>
</nav>
{{!-- Sheet Body --}}
@ -101,6 +102,9 @@
{{editor content=data.biography target="data.biography" button=true owner=owner editable=editable}}
</div>
{{! Profile Tab --}}
{{> systems/ds4/templates/actor/partials/profile.hbs}}
{{!-- Items Tab --}}
{{> systems/ds4/templates/actor/partials/items-overview.hbs}}
</section>

View file

@ -0,0 +1 @@
<div class="tab profile" data-group="primary" data-tab="profile"></div>