mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:47:31 +08:00
14 lines
443 B
Handlebars
14 lines
443 B
Handlebars
<div
|
|
class="suspended-count {{this.suspendedCountClass}}"
|
|
title={{i18n "admin.user.last_six_months"}}
|
|
>
|
|
<label>{{i18n "admin.user.suspended_count"}}</label>
|
|
<span>{{this.user.penalty_counts.suspended}}</span>
|
|
</div>
|
|
<div
|
|
class="silenced-count {{this.silencedCountClass}}"
|
|
title={{i18n "admin.user.last_six_months"}}
|
|
>
|
|
<label>{{i18n "admin.user.silenced_count"}}</label>
|
|
<span>{{this.user.penalty_counts.silenced}}</span>
|
|
</div> |