mirror of
https://github.com/zulip/zulip.git
synced 2026-07-03 21:10:12 +08:00
Ever since we started bundling the app with webpack, there’s been less and less overlap between our ‘static’ directory (files belonging to the frontend app) and Django’s interpretation of the ‘static’ directory (files served directly to the web). Split the app out to its own ‘web’ directory outside of ‘static’, and remove all the custom collectstatic --ignore rules. This makes it much clearer what’s actually being served to the web, and what’s being bundled by webpack. It also shrinks the release tarball by 3%. Signed-off-by: Anders Kaseorg <anders@zulip.com>
29 lines
1.5 KiB
Handlebars
29 lines
1.5 KiB
Handlebars
<div id="admin-deactivated-users-list" class="settings-section" data-name="deactivated-users-admin">
|
|
<div class="clear-float"></div>
|
|
|
|
<div class="settings_panel_list_header">
|
|
<h3>{{t "Deactivated users" }}
|
|
{{> ../help_link_widget link="/help/deactivate-or-reactivate-a-user" }}
|
|
</h3>
|
|
<div class="alert-notification" id="deactivated-user-field-status"></div>
|
|
<input type="text" class="search" placeholder="{{t 'Filter deactivated users' }}" aria-label="{{t 'Filter deactivated users' }}"/>
|
|
</div>
|
|
|
|
<div class="progressive-table-wrapper" data-simplebar>
|
|
<table class="table table-condensed table-striped wrapped-table">
|
|
<thead class="table-sticky-headers">
|
|
<th class="active" data-sort="alphabetic" data-sort-prop="full_name">{{t "Name" }}</th>
|
|
<th {{#if allow_sorting_deactivated_users_list_by_email}}data-sort="email"{{/if}}>{{t "Email" }}</th>
|
|
<th class="user_id" data-sort="id">{{t "User ID" }}</th>
|
|
<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>
|