zulip/static/templates/settings/bot-list-admin.handlebars

23 lines
988 B
Handlebars
Raw Normal View History

2017-07-11 11:24:51 +02:00
<div id="admin-bot-list" class="settings-section" data-name="bot-list-admin">
<input type="text" class="search" placeholder="{{t 'Filter bots' }}" aria-label="{{t 'Filter bots' }}"/>
2017-05-09 22:09:31 +02:00
<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>{{t "Owner" }}</th>
<th>{{t "Bot type" }}</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_bots_table" class="admin_bot_table required-text thick"
data-empty="{{ t 'No bots match your current filter.' }}"></tbody>
</table>
</div>
<div id="admin_page_bots_loading_indicator"></div>
</div>