mirror of
https://github.com/discourse/discourse.git
synced 2025-02-22 20:45:51 +00:00
34 lines
1.0 KiB
Handlebars
34 lines
1.0 KiB
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>
|
|
{{user-flag-percentage user=postAction.user}}
|
|
{{/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}}
|