{{#each shortcuts as |shortcut slot|}} {{#if shortcut.isEmpty}}
{{else}}
{{!-- image --}}
{{!-- label --}} {{#with shortcut.label as |label|}}
{{label.value}}
{{/with}} {{!-- action cost --}} {{#with shortcut.cost as |cost|}} {{#if cost.combo}}
{{else}}
{{{actionGlyph cost.value}}}
{{/if}} {{/with}} {{!-- counter --}} {{#with shortcut.uses as |uses|}}
{{uses.value}}
{{/with}} {{!-- icon --}} {{#with shortcut.icon as |icon|}}
{{/with}} {{!-- checkbox --}} {{#with shortcut.checkbox as |checkbox|}}
{{#if checkbox.checked}} {{else}} {{/if}}
{{/with}} {{!-- overlay --}}
{{#with shortcut.overlay as |content|}} {{content}} {{/with}}
{{/if}} {{/each}}