2016-12-13 21:42:10 +09:00
|
|
|
- content_for :page_title do
|
2017-04-14 04:49:07 +09:00
|
|
|
= t('admin.accounts.title')
|
2016-12-13 21:42:10 +09:00
|
|
|
|
|
|
|
.filters
|
|
|
|
.filter-subset
|
2017-04-14 04:49:07 +09:00
|
|
|
%strong= t('admin.accounts.location.title')
|
2016-12-13 21:42:10 +09:00
|
|
|
%ul
|
2018-11-26 23:53:27 +09: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 21:42:10 +09:00
|
|
|
.filter-subset
|
2017-04-14 04:49:07 +09:00
|
|
|
%strong= t('admin.accounts.moderation.title')
|
2016-12-13 21:42:10 +09:00
|
|
|
%ul
|
2019-04-07 00:53:45 +09:00
|
|
|
%li= link_to safe_join([t('admin.accounts.moderation.pending'), "(#{number_with_delimiter(User.pending.count)})"], ' '), admin_pending_accounts_path
|
2019-03-14 13:28:30 +09: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 20:15:10 +09: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'
|
2016-12-05 02:10:40 +09:00
|
|
|
|
2017-05-18 07:38:01 +09:00
|
|
|
= form_tag admin_accounts_url, method: 'GET', class: 'simple_form' do
|
2017-05-17 10:00:34 +09:00
|
|
|
.fields-group
|
2020-01-20 23:55:03 +09:00
|
|
|
- AccountFilter::KEYS.each do |key|
|
2017-05-17 10:00:34 +09:00
|
|
|
- if params[key].present?
|
|
|
|
= hidden_field_tag key, params[key]
|
|
|
|
|
2017-11-01 22:46:05 +09:00
|
|
|
- %i(username by_domain display_name email ip).each do |key|
|
2019-02-18 21:37:13 +09: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 10:00:34 +09:00
|
|
|
|
|
|
|
.actions
|
2017-05-18 07:38:01 +09:00
|
|
|
%button= t('admin.accounts.search')
|
|
|
|
= link_to t('admin.accounts.reset'), admin_accounts_path, class: 'button negative'
|
2017-05-17 10:00:34 +09:00
|
|
|
|
2017-09-09 09:26:58 +09:00
|
|
|
.table-wrapper
|
|
|
|
%table.table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th= t('admin.accounts.username')
|
2018-11-26 23:53:27 +09:00
|
|
|
%th= t('admin.accounts.role')
|
|
|
|
%th= t('admin.accounts.most_recent_ip')
|
|
|
|
%th= t('admin.accounts.most_recent_activity')
|
2018-12-14 09:47:50 +09:00
|
|
|
%th
|
2017-09-09 09:26:58 +09:00
|
|
|
%tbody
|
|
|
|
= render @accounts
|
2016-12-04 03:30:13 +09:00
|
|
|
|
2017-04-11 08:11:41 +09:00
|
|
|
= paginate @accounts
|