33 lines
1009 B
Handlebars
33 lines
1009 B
Handlebars
|
<div class='flagged-by'>
|
||
|
<div class='user-list-title'>
|
||
|
{{i18n "admin.flags.flagged_by"}}
|
||
|
</div>
|
||
|
<div class='flag-users'>
|
||
|
{{#each flaggedPost.post_actions as |postAction|}}
|
||
|
{{#flag-user user=postAction.user date=postAction.created_at}}
|
||
|
<div class='flagger-flag-type'>
|
||
|
{{post-action-title postAction.post_action_type_id postAction.name_key}}
|
||
|
</div>
|
||
|
{{/flag-user}}
|
||
|
{{/each}}
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
{{#if showResolvedBy}}
|
||
|
<div class='flagged-post-resolved-by'>
|
||
|
<div class='user-list-title'>
|
||
|
{{i18n "admin.flags.resolved_by"}}
|
||
|
</div>
|
||
|
<div class='flag-users'>
|
||
|
{{#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}}
|
||
|
</div>
|
||
|
</div>
|
||
|
{{/if}}
|