mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 03:05:25 +08:00
58 lines
1.6 KiB
Handlebars
58 lines
1.6 KiB
Handlebars
<div class='admin-controls'>
|
|
<div class='span15'>
|
|
<ul class='nav nav-pills'>
|
|
<li>{{#link-to 'adminUser' user}}<i class="fa fa-caret-left"></i> {{user.username}}{{/link-to}}</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
{{#loading-spinner condition=loading}}
|
|
<div class='admin-container user-badges'>
|
|
<h2>{{i18n 'admin.badges.grant_badge'}}</h2>
|
|
{{#if noBadges}}
|
|
<p>{{i18n 'admin.badges.no_badges'}}</p>
|
|
{{else}}
|
|
<br>
|
|
{{combo-box valueAttribute="id" value=controller.selectedBadgeId content=controller.grantableBadges}}
|
|
<button class='btn btn-primary' {{action "grantBadge" controller.selectedBadgeId}}>{{i18n 'admin.badges.grant'}}</button>
|
|
{{/if}}
|
|
|
|
<br>
|
|
<br>
|
|
|
|
<h2>{{i18n 'admin.badges.granted_badges'}}</h2>
|
|
<br>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>{{i18n 'admin.badges.badge'}}</th>
|
|
<th>{{i18n 'admin.badges.granted_by'}}</th>
|
|
<th>{{i18n 'admin.badges.granted_at'}}</th>
|
|
<th></th>
|
|
</tr>
|
|
|
|
{{#each}}
|
|
<tr>
|
|
<td>{{user-badge badge=badge}}</td>
|
|
<td>
|
|
{{#link-to 'adminUser' badge.granted_by}}
|
|
{{avatar granted_by imageSize="tiny"}}
|
|
{{granted_by.username}}
|
|
{{/link-to}}
|
|
</td>
|
|
<td>{{age-with-tooltip granted_at}}</td>
|
|
<td>
|
|
<button class='btn' {{action "revokeBadge" this}}>{{i18n 'admin.badges.revoke'}}</button>
|
|
</td>
|
|
</tr>
|
|
{{else}}
|
|
<tr>
|
|
<td colspan="5">
|
|
<p>{{i18n 'admin.badges.no_user_badges' name=user.username}}</p>
|
|
</td>
|
|
</tr>
|
|
{{/each}}
|
|
</table>
|
|
</div>
|
|
{{/loading-spinner}}
|