2016-12-13 13:42:10 +01:00
|
|
|
- content_for :page_title do
|
2017-04-13 21:49:07 +02:00
|
|
|
= t('admin.accounts.title')
|
2016-12-13 13:42:10 +01:00
|
|
|
|
|
|
|
.filters
|
|
|
|
.filter-subset
|
2017-04-13 21:49:07 +02:00
|
|
|
%strong= t('admin.accounts.location.title')
|
2016-12-13 13:42:10 +01:00
|
|
|
%ul
|
2018-11-26 15:53:27 +01:00
|
|
|
%li= filter_link_to t('admin.accounts.location.local'), remote: nil
|
|
|
|
%li= filter_link_to t('admin.accounts.location.remote'), remote: '1'
|
2016-12-13 13:42:10 +01:00
|
|
|
.filter-subset
|
2017-04-13 21:49:07 +02:00
|
|
|
%strong= t('admin.accounts.moderation.title')
|
2016-12-13 13:42:10 +01:00
|
|
|
%ul
|
2019-04-06 17:53:45 +02:00
|
|
|
%li= link_to safe_join([t('admin.accounts.moderation.pending'), "(#{number_with_delimiter(User.pending.count)})"], ' '), admin_pending_accounts_path
|
2019-03-14 05:28:30 +01:00
|
|
|
%li= filter_link_to t('admin.accounts.moderation.active'), silenced: nil, suspended: nil, pending: nil
|
|
|
|
%li= filter_link_to t('admin.accounts.moderation.silenced'), silenced: '1', suspended: nil, pending: nil
|
|
|
|
%li= filter_link_to t('admin.accounts.moderation.suspended'), suspended: '1', silenced: nil, pending: nil
|
2017-12-13 12:15:10 +01:00
|
|
|
.filter-subset
|
|
|
|
%strong= t('admin.accounts.role')
|
|
|
|
%ul
|
|
|
|
%li= filter_link_to t('admin.accounts.moderation.all'), staff: nil
|
|
|
|
%li= filter_link_to t('admin.accounts.roles.staff'), staff: '1'
|
2020-03-08 15:39:13 +01:00
|
|
|
.filter-subset
|
|
|
|
%strong= t 'generic.order_by'
|
|
|
|
%ul
|
|
|
|
%li= filter_link_to t('relationships.most_recent'), order: nil
|
|
|
|
%li= filter_link_to t('admin.accounts.username'), order: 'alphabetic'
|
|
|
|
%li= filter_link_to t('relationships.last_active'), order: 'active'
|
2016-12-04 18:10:40 +01:00
|
|
|
|
2017-05-18 00:38:01 +02:00
|
|
|
= form_tag admin_accounts_url, method: 'GET', class: 'simple_form' do
|
2017-05-17 03:00:34 +02:00
|
|
|
.fields-group
|
2020-01-20 15:55:03 +01:00
|
|
|
- AccountFilter::KEYS.each do |key|
|
2017-05-17 03:00:34 +02:00
|
|
|
- if params[key].present?
|
|
|
|
= hidden_field_tag key, params[key]
|
|
|
|
|
2017-11-01 14:46:05 +01:00
|
|
|
- %i(username by_domain display_name email ip).each do |key|
|
2019-02-18 13:37:13 +01:00
|
|
|
- unless key == :by_domain && params[:remote].blank?
|
|
|
|
.input.string.optional
|
|
|
|
= text_field_tag key, params[key], class: 'string optional', placeholder: I18n.t("admin.accounts.#{key}")
|
2017-05-17 03:00:34 +02:00
|
|
|
|
|
|
|
.actions
|
2020-06-26 00:36:30 +02:00
|
|
|
%button.button= t('admin.accounts.search')
|
2017-05-18 00:38:01 +02:00
|
|
|
= link_to t('admin.accounts.reset'), admin_accounts_path, class: 'button negative'
|
2017-05-17 03:00:34 +02:00
|
|
|
|
2017-09-09 02:26:58 +02:00
|
|
|
.table-wrapper
|
|
|
|
%table.table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th= t('admin.accounts.username')
|
2018-11-26 15:53:27 +01:00
|
|
|
%th= t('admin.accounts.role')
|
|
|
|
%th= t('admin.accounts.most_recent_ip')
|
|
|
|
%th= t('admin.accounts.most_recent_activity')
|
2018-12-14 01:47:50 +01:00
|
|
|
%th
|
2017-09-09 02:26:58 +02:00
|
|
|
%tbody
|
|
|
|
= render @accounts
|
2016-12-03 19:30:13 +01:00
|
|
|
|
2017-04-11 01:11:41 +02:00
|
|
|
= paginate @accounts
|