v0.0.9
This commit is contained in:
@@ -44,9 +44,8 @@
|
||||
<!-- Character -->
|
||||
{{> "systems/totem/templates/actor/parts/character-features.hbs"}}
|
||||
</div>
|
||||
<div class="tab instincts" data-group="primary" data-tab="totem">
|
||||
<div class="tab totem" data-group="primary" data-tab="totem">
|
||||
<h3>Totem</h3>
|
||||
<!-- Rituals -->
|
||||
{{> "systems/totem/templates/actor/parts/actor-totem.hbs"}}
|
||||
</div>
|
||||
<div class="tab equipment" data-group="primary" data-tab="equipment">
|
||||
@@ -61,11 +60,19 @@
|
||||
</div>
|
||||
|
||||
<div class="tab stories" data-group="primary" data-tab="stories">
|
||||
<h3>Histoire</h3>
|
||||
<section class="biography-details">
|
||||
<label class="details-label">Bio</label>
|
||||
{{editor system.stories.biography target="system.stories.biography" button=true owner=owner editable=editable}}
|
||||
</section>
|
||||
<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>
|
||||
|
||||
@@ -1,11 +1,7 @@
|
||||
<ul class="padding-with-frieze unstyled">
|
||||
<li>
|
||||
<div class="flexrow flex-group-center items-center">
|
||||
<label for="system.identity.age" class="resource-label flexlarge align-left">{{ localize "IDENTITY.age"}}</label>
|
||||
<input type="number" name="system.identity.age" value="{{ system.identity.age }}" data-dtype="Number"/>
|
||||
<span>ans</span>
|
||||
</div>
|
||||
</li>
|
||||
<div class="image-wrapper">
|
||||
<img class="profile-img" src="{{actor.img}}" data-edit="img" title="{{actor.name}}" height="100" width="100"/>
|
||||
</div>
|
||||
<ul class="padding-with-frieze unstyled paper">
|
||||
<li>
|
||||
<div class="flexrow flex-group-center items-center">
|
||||
<label for="system.identity.height" class="resource-label flexlarge align-left">{{ localize "IDENTITY.height"}}</label>
|
||||
@@ -28,15 +24,7 @@
|
||||
{{selectOptions config.sexes selected=system.identity.gender localize=true}}
|
||||
</select>
|
||||
</div>
|
||||
</li>
|
||||
<li>
|
||||
<div class="flexcol flex-group-center items-center w-full">
|
||||
<label for="system.identity.totem" class="resource-label flexlarge align-left">{{ localize "IDENTITY.totem"}}</label>
|
||||
<select name="system.identity.totem" class="w-full">
|
||||
{{selectOptions config.totems selected=system.identity.totem localize=true}}
|
||||
</select>
|
||||
</div>
|
||||
</li>
|
||||
</li>
|
||||
<li>
|
||||
<div class="flexcol flex-group-center items-center w-full">
|
||||
<label for="system.identity.origin" class="resource-label flexlarge align-left">{{ localize "IDENTITY.origin"}}</label>
|
||||
@@ -45,4 +33,46 @@
|
||||
</select>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
{{#if system.identity.theme}}
|
||||
<li>
|
||||
<div class="flexcol flex-group-center items-center w-full">
|
||||
<label for="system.identity.theme" class="resource-label flexlarge align-left">{{ localize "IDENTITY.theme"}}</label>
|
||||
{{{ system.identity.theme }}}
|
||||
</div>
|
||||
</li>
|
||||
{{/if}}
|
||||
{{#if system.identity.instincts}}
|
||||
<li>
|
||||
<div class="flexcol flex-group-center items-center w-full">
|
||||
<label for="system.identity.instincts" class="resource-label flexlarge align-left">{{ localize "IDENTITY.instincts"}}</label>
|
||||
{{{ system.identity.instincts }}}
|
||||
</div>
|
||||
</li>
|
||||
{{/if}}
|
||||
{{#if system.identity.prohibits}}
|
||||
<li>
|
||||
<div class="flexcol flex-group-center items-center w-full">
|
||||
<label for="system.identity.prohibits" class="resource-label flexlarge align-left">{{ localize "IDENTITY.prohibits"}}</label>
|
||||
{{{ system.identity.prohibits }}}
|
||||
</div>
|
||||
</li>
|
||||
{{/if}}
|
||||
{{#if system.identity.objectives}}
|
||||
<li>
|
||||
<div class="flexcol flex-group-center items-center w-full">
|
||||
<label for="system.identity.objectives" class="resource-label flexlarge align-left">{{ localize "IDENTITY.objectives"}}</label>
|
||||
{{{ system.identity.objectives }}}
|
||||
</div>
|
||||
</li>
|
||||
{{/if}}
|
||||
</ul>
|
||||
{{#if system.identity.relations}}
|
||||
<ul class="padding-with-frieze unstyled second-paper">
|
||||
<li>
|
||||
<div class="flexcol flex-group-center items-center w-full">
|
||||
<label for="system.identity.relations" class="resource-label flexlarge align-left">{{ localize "IDENTITY.relations"}}</label>
|
||||
{{{ system.identity.relations }}}
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
{{/if}}
|
||||
|
||||
Reference in New Issue
Block a user