mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 03:05:25 +08:00
110 lines
3.6 KiB
Handlebars
110 lines
3.6 KiB
Handlebars
{{#if hasSelection}}
|
|
<div id='selected-controls'>
|
|
<button {{action "approveUsers"}} class='btn'>{{count-i18n key="admin.users.approved_selected" count=selectedCount}}</button>
|
|
<button {{action "rejectUsers"}} class='btn btn-danger'>{{count-i18n key="admin.users.reject_selected" count=selectedCount}}</button>
|
|
</div>
|
|
{{/if}}
|
|
|
|
<div class="admin-title">
|
|
<div class="pull-left">
|
|
<h2>{{title}}</h2>
|
|
</div>
|
|
</div>
|
|
<div class='username controls'>
|
|
{{text-field value=listFilter placeholder=searchHint}}
|
|
{{#unless showEmails}}
|
|
<div class="pull-right">
|
|
<button {{action "showEmails"}} class="btn">{{i18n 'admin.users.show_emails'}}</button>
|
|
</div>
|
|
{{/unless}}
|
|
</div>
|
|
|
|
{{#conditional-loading-spinner condition=refreshing}}
|
|
{{#if model}}
|
|
<table class='table users-list'>
|
|
<thead>
|
|
{{#if showApproval}}
|
|
<th>{{input type="checkbox" checked=selectAll}}</th>
|
|
{{/if}}
|
|
<th> </th>
|
|
<th>{{i18n 'username'}}</th>
|
|
<th>{{i18n 'email'}}</th>
|
|
<th>{{i18n 'admin.users.last_emailed'}}</th>
|
|
{{admin-directory-toggle field="seen" i18nKey='last_seen' order=order ascending=ascending}}
|
|
{{admin-directory-toggle field="topics_viewed" i18nKey="admin.user.topics_entered" order=order ascending=ascending}}
|
|
{{admin-directory-toggle field="posts_read" i18nKey="admin.user.posts_read_count" order=order ascending=ascending}}
|
|
{{admin-directory-toggle field="read_time" i18nKey="admin.user.time_read" order=order ascending=ascending}}
|
|
{{admin-directory-toggle field="created" i18nKey="created" order=order ascending=ascending}}
|
|
{{#if showApproval}}
|
|
<th>{{i18n 'admin.users.approved'}}</th>
|
|
{{/if}}
|
|
<th> </th>
|
|
</thead>
|
|
<tbody>
|
|
{{#each model as |user|}}
|
|
<tr class="user {{user.selected}} {{unless user.active 'not-activated'}}">
|
|
{{#if showApproval}}
|
|
<td>
|
|
{{#if user.can_approve}}
|
|
{{input type="checkbox" checked=user.selected}}
|
|
{{/if}}
|
|
</td>
|
|
{{/if}}
|
|
<td>
|
|
<a href="{{unbound user.path}}" data-user-card="{{unbound user.username}}">
|
|
{{avatar user imageSize="small"}}
|
|
</a>
|
|
</td>
|
|
<td>
|
|
{{#link-to 'adminUser' user}}{{unbound user.username}}{{/link-to}}
|
|
</td>
|
|
<td class='email'>
|
|
{{unbound user.email}}
|
|
</td>
|
|
<td>
|
|
{{{unbound user.last_emailed_age}}}
|
|
</td>
|
|
<td>
|
|
{{{unbound user.last_seen_age}}}
|
|
</td>
|
|
<td>
|
|
{{number user.topics_entered}}
|
|
</td>
|
|
<td>
|
|
{{number user.posts_read_count}}
|
|
</td>
|
|
<td>
|
|
{{{unbound user.time_read}}}
|
|
</td>
|
|
|
|
<td>
|
|
{{{unbound user.created_at_age}}}
|
|
</td>
|
|
|
|
{{#if showApproval}}
|
|
<td>
|
|
{{#if user.approved}}
|
|
{{i18n 'yes_value'}}
|
|
{{else}}
|
|
{{i18n 'no_value'}}
|
|
{{/if}}
|
|
</td>
|
|
{{/if}}
|
|
<td>
|
|
{{#if user.admin}}
|
|
{{d-icon "shield" title="admin.title" }}
|
|
{{/if}}
|
|
{{#if user.moderator}}
|
|
{{d-icon "shield" title="admin.moderator" }}
|
|
{{/if}}
|
|
</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
|
|
{{else}}
|
|
<p>{{i18n 'search.no_results'}}</p>
|
|
{{/if}}
|
|
{{/conditional-loading-spinner}}
|