{{!-- Sheet Header --}}

/
/
{{!-- Sheet Tab Navigation --}} {{!-- Sheet Body --}}
{{!-- Biography Tab --}}
{{editor content=data.biography target="data.biography" button=true owner=owner editable=editable}}
{{!-- Owned Items Tab --}}
    {{#each actor.items as |item id|}}
  1. {{item.name}}

    {{!-- Iterate through all attributes on the item and output buttons for any that are formula. --}}
    {{#each item.data.attributes as |itemAttr key|}} {{#if (eq itemAttr.dtype "Formula")}} {{!-- Use the items.name.key format for shorthand. --}} {{#if ../../shorthand}} {{!-- Use the items.name.attributes.key.value format otherwise. --}} {{else}} {{/if}} {{/if}} {{/each}}
  2. {{/each}}
{{!-- Attributes Tab --}}
{{localize "SIMPLE.AttributeKey"}} {{localize "SIMPLE.AttributeValue"}} {{localize "SIMPLE.AttributeLabel"}} {{localize "SIMPLE.AttributeDtype"}}
{{!-- Render the attribute list partial. --}} {{> "systems/worldbuilding/templates/parts/sheet-attributes.html" attributes=data.ungroupedAttributes dtypes=dtypes}} {{!-- Render the grouped attributes partial and control. --}}
{{> "systems/worldbuilding/templates/parts/sheet-groups.html" attributes=data.groupedAttributes groups=data.groups dtypes=dtypes}}