Files
zulip/static/templates/settings/deactivated_users_admin.hbs
Tim Abbott 6d0c39fd7e CVE-2020-14194: Use noopener/noreferrer for external links.
We fixed the main issue of this form in CVE-2020-9444, but the audit
done at that time only included links found in rendered_markdown; this
change completes our audit for links with target=_blank anywhere in
the codebase.
2020-06-16 23:16:05 -07:00

29 lines
1.5 KiB
Handlebars

<div id="admin-deactivated-users-list" class="settings-section" data-name="deactivated-users-admin">
<h3 class="inline-block">{{t "Deactivated users" }}
<a href="/help/deactivate-or-reactivate-a-user" target="_blank" rel="noopener noreferrer">
<i class="fa fa-question-circle-o" aria-hidden="true"></i>
</a>
</h3>
<input type="text" class="search" placeholder="{{t 'Filter deactivated users' }}" aria-label="{{t 'Filter deactivated users' }}"/>
<div class="alert-notification" id="deactivated-user-field-status"></div>
<div class="clear-float"></div>
<div class="progressive-table-wrapper" data-simplebar data-list-render="deactivated_users_table_list">
<table class="table table-condensed table-striped wrapped-table">
<thead>
<th class="active" data-sort="alphabetic" data-sort-prop="full_name">{{t "Name" }}</th>
{{#if show_email}}
<th data-sort="alphabetic" data-sort-prop="email">{{t "Email" }}</th>
{{/if}}
<th class="user_role" data-sort="role">{{t "Role" }}</th>
{{#if is_admin}}
<th class="actions">{{t "Actions" }}</th>
{{/if}}
</thead>
<tbody id="admin_deactivated_users_table" class="required-text thick admin_user_table"
data-empty="{{t 'No users match your current filter.' }}"></tbody>
</table>
</div>
<div id="admin_page_deactivated_users_loading_indicator"></div>
</div>