hummingbird-me/kitsu-web

View on GitHub
app/templates/components/admin/report-list.hbs

Summary

Maintainability
Test Coverage
<thead class="thead-inverse">
  <tr>
    <th>{{t "components.admin.reports.table.user"}}</th>
    <th>{{t "components.admin.reports.table.type"}}</th>
    <th>{{t "components.admin.reports.table.reason"}}</th>
    <th>{{t "components.admin.reports.table.explanation"}}</th>
    <th>{{t "components.admin.reports.table.moderator"}}</th>
    <th>{{t "components.admin.reports.table.status"}}</th>
    <th class="text-xs-center">{{t "components.admin.reports.table.actions"}}</th>
  </tr>
</thead>
<tbody>
  {{#each reports as |report|}}
    {{admin/report-item report=report}}
  {{/each}}
</tbody>