mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 18:43:40 +08:00
410994b7f5
When clicked, it pops up a modal showing a history of moderation actions taken on the post or topic.
24 lines
752 B
Handlebars
24 lines
752 B
Handlebars
{{#d-modal-body title="admin.flags.moderation_history"}}
|
|
{{#conditional-loading-spinner condition=loading}}
|
|
{{#if history}}
|
|
<table class='moderation-history'>
|
|
<tr>
|
|
<th>{{i18n "admin.logs.created_at"}}</th>
|
|
<th>{{i18n "admin.logs.action"}}</th>
|
|
<th>{{i18n "admin.moderation_history.performed_by"}}</th>
|
|
</tr>
|
|
{{#each history as |item|}}
|
|
{{moderation-history-item item=item}}
|
|
{{/each}}
|
|
</table>
|
|
{{else}}
|
|
<div class='no-results'>
|
|
{{i18n "admin.moderation_history.no_results"}}
|
|
</div>
|
|
{{/if}}
|
|
{{/conditional-loading-spinner}}
|
|
{{/d-modal-body}}
|
|
<div class="modal-footer">
|
|
{{d-button action=(action "closeModal") label="close"}}
|
|
</div>
|