{{i18n "admin.flags.flagged_by"}}
{{#each flaggedPost.post_actions as |postAction|}}
{{#flag-user user=postAction.user date=postAction.created_at}}
{{post-action-title postAction.post_action_type_id postAction.name_key}}
{{user-flag-percentage
agreed=postAction.user.flags_agreed
disagreed=postAction.user.flags_disagreed
ignored=postAction.user.flags_ignored}}
{{/flag-user}}
{{/each}}
{{#if showResolvedBy}}
{{i18n "admin.flags.resolved_by"}}
{{#each flaggedPost.post_actions as |postAction|}}
{{#flag-user user=postAction.disposed_by date=postAction.disposed_at}}
{{disposition-icon postAction.disposition}}
{{#if postAction.staff_took_action}}
{{d-icon "gavel" title="admin.flags.took_action"}}
{{/if}}
{{/flag-user}}
{{/each}}
{{/if}}