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