forked from treehouse/mastodon
68 lines
3.1 KiB
Plaintext
68 lines
3.1 KiB
Plaintext
- content_for :page_title do
|
|
= t('admin.accounts.title')
|
|
|
|
.filters
|
|
.filter-subset
|
|
%strong= t('admin.accounts.location.title')
|
|
%ul
|
|
%li= filter_link_to t('generic.all'), origin: nil
|
|
%li= filter_link_to t('admin.accounts.location.local'), origin: 'local'
|
|
%li= filter_link_to t('admin.accounts.location.remote'), origin: 'remote'
|
|
.filter-subset
|
|
%strong= t('admin.accounts.moderation.title')
|
|
%ul
|
|
%li= filter_link_to t('generic.all'), status: nil
|
|
%li= filter_link_to t('admin.accounts.moderation.active'), status: 'active'
|
|
%li= filter_link_to t('admin.accounts.moderation.suspended'), status: 'suspended'
|
|
%li= filter_link_to safe_join([t('admin.accounts.moderation.pending'), "(#{number_with_delimiter(User.pending.count)})"], ' '), status: 'pending'
|
|
.filter-subset
|
|
%strong= t('admin.accounts.role')
|
|
%ul
|
|
%li= filter_link_to t('admin.accounts.moderation.all'), permissions: nil
|
|
%li= filter_link_to t('admin.accounts.roles.staff'), permissions: 'staff'
|
|
.filter-subset
|
|
%strong= t 'generic.order_by'
|
|
%ul
|
|
%li= filter_link_to t('relationships.most_recent'), order: nil
|
|
%li= filter_link_to t('relationships.last_active'), order: 'active'
|
|
|
|
= form_tag admin_accounts_url, method: 'GET', class: 'simple_form' do
|
|
.fields-group
|
|
- (AccountFilter::KEYS - %i(origin status permissions)).each do |key|
|
|
- if params[key].present?
|
|
= hidden_field_tag key, params[key]
|
|
|
|
- %i(username by_domain display_name email ip).each do |key|
|
|
- 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}")
|
|
|
|
.actions
|
|
%button.button= t('admin.accounts.search')
|
|
= link_to t('admin.accounts.reset'), admin_accounts_path, class: 'button negative'
|
|
|
|
= form_for(@form, url: batch_admin_accounts_path) do |f|
|
|
= hidden_field_tag :page, params[:page] || 1
|
|
|
|
- AccountFilter::KEYS.each do |key|
|
|
= hidden_field_tag key, params[key] if params[key].present?
|
|
|
|
.batch-table
|
|
.batch-table__toolbar
|
|
%label.batch-table__toolbar__select.batch-checkbox-all
|
|
= check_box_tag :batch_checkbox_all, nil, false
|
|
.batch-table__toolbar__actions
|
|
- if @accounts.any? { |account| account.user_pending? }
|
|
= f.button safe_join([fa_icon('check'), t('admin.accounts.approve')]), name: :approve, class: 'table-action-link', type: :submit, data: { confirm: t('admin.reports.are_you_sure') }
|
|
|
|
= f.button safe_join([fa_icon('times'), t('admin.accounts.reject')]), name: :reject, class: 'table-action-link', type: :submit, data: { confirm: t('admin.reports.are_you_sure') }
|
|
|
|
= f.button safe_join([fa_icon('lock'), t('admin.accounts.perform_full_suspension')]), name: :suspend, class: 'table-action-link', type: :submit, data: { confirm: t('admin.reports.are_you_sure') }
|
|
.batch-table__body
|
|
- if @accounts.empty?
|
|
= nothing_here 'nothing-here--under-tabs'
|
|
- else
|
|
= render partial: 'account', collection: @accounts, locals: { f: f }
|
|
|
|
= paginate @accounts
|