mirror of https://github.com/zulip/zulip.git
23 lines
983 B
Handlebars
23 lines
983 B
Handlebars
<div id="admin-user-list" class="settings-section" data-name="user-list-admin">
|
|
<input type="text" class="search" placeholder="{{t 'Filter users' }}" aria-label="{{t 'Filter users' }}"/>
|
|
<div class="clear-float"></div>
|
|
|
|
<table class="table table-condensed table-striped wrapped-table">
|
|
<thead>
|
|
<th class="wrapped-cell">{{t "Name" }}</th>
|
|
<th>{{t "Email" }}</th>
|
|
<th class="last_active">{{t "Last active" }}</th>
|
|
{{#if is_admin}}
|
|
<th class="actions">{{t "Actions" }}</th>
|
|
{{/if}}
|
|
</thead>
|
|
</table>
|
|
<div class="progressive-table-wrapper">
|
|
<table class="table table-condensed table-striped wrapped-table">
|
|
<tbody id="admin_users_table" class="admin_user_table required-text thick"
|
|
data-empty="{{t 'No users match your current filter.' }}"></tbody>
|
|
</table>
|
|
</div>
|
|
<div id="admin_page_users_loading_indicator"></div>
|
|
</div>
|