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