mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
1a78e12f4e
- moderation tab - sorting/pagination - improved third party reports support - trending charts - better perf - many fixes - refactoring - new reports Co-Authored-By: Simon Cossar <scossar@users.noreply.github.com>
16 lines
358 B
Handlebars
16 lines
358 B
Handlebars
<div class="table-container">
|
|
{{#each model.data as |data|}}
|
|
<a class="table-cell user-{{data.key}}" href="{{data.url}}">
|
|
<span class="label">
|
|
{{#if data.icon}}
|
|
{{d-icon data.icon}}
|
|
{{/if}}
|
|
{{data.x}}
|
|
</span>
|
|
<span class="value">
|
|
{{number data.y}}
|
|
</span>
|
|
</a>
|
|
{{/each}}
|
|
</div>
|