mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
82 lines
2.5 KiB
Handlebars
82 lines
2.5 KiB
Handlebars
<div class='admin-controls'>
|
|
<div class='span15'>
|
|
<ul class="nav nav-pills">
|
|
<li>{{#linkTo adminUsersList.active}}{{i18n admin.users.active}}{{/linkTo}}</li>
|
|
<li>{{#linkTo adminUsersList.new}}{{i18n admin.users.new}}{{/linkTo}}</li>
|
|
{{#if Discourse.SiteSettings.must_approve_users}}
|
|
<li>{{#linkTo adminUsersList.pending}}{{i18n admin.users.pending}}{{/linkTo}}</li>
|
|
{{/if}}
|
|
</ul>
|
|
</div>
|
|
<div class='span5 username controls'>
|
|
{{view Discourse.TextField valueBinding="controller.username" placeholderKey="username"}}
|
|
</div>
|
|
</div>
|
|
|
|
{{#if hasSelection}}
|
|
<div id='selected-controls'>
|
|
<button {{action approveUsers target="controller"}} class='btn'>{{countI18n admin.users.approved_selected countBinding="selectedCount"}}</button>
|
|
</div>
|
|
{{/if}}
|
|
|
|
{{#if content.length}}
|
|
<table class='table'>
|
|
<tr>
|
|
{{#if showApproval}}
|
|
<th>{{view Ember.Checkbox checkedBinding="selectAll"}}</th>
|
|
{{/if}}
|
|
<th> </th>
|
|
<th>{{i18n username}}</th>
|
|
<th>{{i18n email}}</th>
|
|
<th>{{i18n admin.users.last_emailed}}</th>
|
|
<th>{{i18n last_seen}}</th>
|
|
<th>{{i18n admin.user.topics_entered}}</th>
|
|
<th>{{i18n admin.user.posts_read_count}}</th>
|
|
<th>{{i18n admin.user.time_read}}</th>
|
|
<th>{{i18n created}}</th>
|
|
{{#if showApproval}}
|
|
<th>{{i18n admin.users.approved}}</th>
|
|
{{/if}}
|
|
<th> </th>
|
|
|
|
</tr>
|
|
|
|
{{#each content}}
|
|
<tr {{bindAttr class="selected"}}>
|
|
{{#if controller.showApproval}}
|
|
<td>
|
|
{{#if can_approve}}
|
|
{{view Ember.Checkbox checkedBinding="selected"}}
|
|
{{/if}}
|
|
</td>
|
|
{{/if}}
|
|
<td>
|
|
<a href="{{unbound adminPath}}">{{avatar this imageSize="small"}}</a>
|
|
</td>
|
|
<td><a href="{{unbound adminPath}}">{{unbound username}}</a></td>
|
|
<td>{{shorten email}}</td>
|
|
<td>{{{unbound last_emailed_age}}}</td>
|
|
<td>{{{unbound last_seen_age}}}</td>
|
|
<td>{{{unbound topics_entered}}}</td>
|
|
<td>{{{unbound posts_read_count}}}</td>
|
|
<td>{{{unbound time_read}}}</td>
|
|
|
|
<td>{{{unbound created_at_age}}}</td>
|
|
|
|
{{#if controller.showApproval}}
|
|
<td>
|
|
{{#if approved}}
|
|
{{i18n yes_value}}
|
|
{{else}}
|
|
{{i18n no_value}}
|
|
{{/if}}
|
|
</td>
|
|
{{/if}}
|
|
<td>{{#if admin}}<i class="icon-trophy"></i>{{/if}}<td>
|
|
</tr>
|
|
{{/each}}
|
|
|
|
</table>
|
|
{{else}}
|
|
<div class='admin-loading'>{{i18n loading}}</div>
|
|
{{/if}}
|