2017-12-05 01:14:43 +08:00
|
|
|
{{#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">
|
2019-01-10 18:06:01 +08:00
|
|
|
{{d-button action=(route-action "closeModal") label="close"}}
|
2017-12-05 01:14:43 +08:00
|
|
|
</div>
|