{{#each @model.fieldGroups as |fieldGroup|}}
{{#each-in fieldGroup as |group fields|}}
{{#if (or (eq group "default") (eq group "Options"))}}
{{#each fields as |attr|}}
{{#if (not (includes attr.options.fieldValue (array "id" "mutableId")))}}
{{#if attr.options.sensitive}}
This value is sensitive and cannot be shown.
{{else}}
{{get @model attr.name}}
{{/if}}
{{/if}}
{{/each}}
{{else}}
{{group}}
{{#each fields as |attr|}}
{{#if attr.options.sensitive}}
This value is sensitive and cannot be shown.
{{else}}
{{get @model attr.name}}
{{/if}}
{{/each}}
{{/if}}
{{/each-in}}
{{/each}}