zulip/templates/zerver/administration.html

50 lines
1.9 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{# Administration panel #}
<div class="row-fluid">
<div class="span12">
<div class="administration">
<h1>Administration</h1>
<h2>Users</h2>
<table class="table table-condensed table-striped">
<tbody id="admin_users_table" class="admin_user_table">
<th>Name</th>
<th>Email</th>
<th>Actions</th>
</tbody>
</table>
<h2>Bots</h2>
<table class="table table-condensed table-striped">
<tbody id="admin_bots_table" class="admin_user_table">
<th>Name</th>
<th>Email</th>
<th>Owner</th>
<th>Actions</th>
</tbody>
</table>
<h2>Deactivated Users</h2>
<table class="table table-condensed table-striped">
<tbody id="admin_deactivated_users_table" class="admin_user_table">
<th>Name</th>
<th>Email</th>
<th>Actions</th>
</tbody>
</table>
<div id="deactivation_modal" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="deactivation_modal_label" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="deactivation_modal_label">Deactivate <span class="email"></span></h3>
</div>
<div class="modal-body">
<p>By deactivating <strong><span class="user_name"></span></strong> &lt;<span class="email"></span>&gt;, they will be logged out of Zulip immediately.</p>
<p>Their password will be cleared from our systems, and any bots they maintain will be disabled.</p>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Cancel</button>
<button class="btn btn-danger" id="do_deactivate_button">Deactivate now</button>
</div>
</div>
</div>
</div>
</div>