{{#each category.entries as |entry|}}
{{#if entry.menu}}
<div class="form-group">
    <label>{{localize entry.label}}</label>
    <div class="form-fields">
        <button type="button" data-action="openSubmenu" data-key="{{entry.key}}">
            {{~#if entry.icon}}
            <i class="{{entry.icon}}" inert></i>
            {{/if~}}
            <span>{{localize entry.buttonText}}</span>
        </button>
    </div>
    {{~#if entry.hint}}
    <p class="hint">{{localize entry.hint}}</p>
    {{/if~}}
</div>
{{else if entry.folderPicker}}
{{formGroup entry.field value=entry.value elementType="file-picker" type="folder" rootId=@root.rootId localize=true}}
{{else}}
{{formGroup entry.field value=entry.value rootId=@root.rootId localize=true}}
{{/if}}
{{/each}}
