{{!-- Iterate through all attributes on the item and output buttons for any that are formula. --}}
{{#each item.system.attributes as |itemAttr key|}}
{{#if itemAttr.dtype}}
{{#if itemAttr.isFormula}}
{{!-- Use the items.name.key format for shorthand. --}}
{{#if ../../shorthand}}
{{!-- Use the items.name.attributes.key.value format otherwise. --}}
{{else}}
{{/if}}
{{/if}}
{{else}}
{{#each itemAttr as |itemGroupedAttr groupedKey|}}
{{#if itemGroupedAttr.isFormula}}
{{!-- Use the items.name.key format for shorthand. --}}
{{#if ../../../shorthand}}
{{!-- Use the items.name.attributes.key.value format otherwise. --}}
{{else}}
{{/if}}
{{/if}}
{{/each}}
{{/if}}
{{/each}}