2016-12-13 04:42:10 -08:00
|
|
|
- content_for :page_title do
|
2017-04-13 12:49:07 -07:00
|
|
|
= t('admin.accounts.title')
|
2016-12-13 04:42:10 -08:00
|
|
|
|
|
|
|
.filters
|
|
|
|
.filter-subset
|
2017-04-13 12:49:07 -07:00
|
|
|
%strong= t('admin.accounts.location.title')
|
2016-12-13 04:42:10 -08:00
|
|
|
%ul
|
2017-04-13 12:49:07 -07:00
|
|
|
%li= filter_link_to t('admin.accounts.location.all'), local: nil, remote: nil
|
2017-07-06 15:48:09 -07:00
|
|
|
%li
|
|
|
|
- if selected? local: '1', remote: nil
|
|
|
|
= filter_link_to t('admin.accounts.location.local'), {local: nil, remote: nil}, {local: '1', remote: nil}
|
|
|
|
- else
|
|
|
|
= filter_link_to t('admin.accounts.location.local'), local: '1', remote: nil
|
|
|
|
%li
|
|
|
|
- if selected? remote: '1', local: nil
|
|
|
|
= filter_link_to t('admin.accounts.location.remote'), {remote: nil, local: nil}, {remote: '1', local: nil}
|
|
|
|
- else
|
|
|
|
= filter_link_to t('admin.accounts.location.remote'), remote: '1', local: nil
|
2016-12-13 04:42:10 -08:00
|
|
|
.filter-subset
|
2017-04-13 12:49:07 -07:00
|
|
|
%strong= t('admin.accounts.moderation.title')
|
2016-12-13 04:42:10 -08:00
|
|
|
%ul
|
2017-04-13 12:49:07 -07:00
|
|
|
%li= filter_link_to t('admin.accounts.moderation.all'), silenced: nil, suspended: nil
|
2017-07-06 15:48:09 -07:00
|
|
|
%li
|
|
|
|
- if selected? silenced: '1'
|
|
|
|
= filter_link_to t('admin.accounts.moderation.silenced'), {silenced: nil}, {silenced: '1'}
|
|
|
|
- else
|
|
|
|
= filter_link_to t('admin.accounts.moderation.silenced'), silenced: '1'
|
|
|
|
%li
|
|
|
|
- if selected? suspended: '1'
|
|
|
|
= filter_link_to t('admin.accounts.moderation.suspended'), {suspended: nil}, {suspended: '1'}
|
|
|
|
- else
|
|
|
|
= filter_link_to t('admin.accounts.moderation.suspended'), suspended: '1'
|
2017-12-13 03:15:10 -08: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-13 04:42:10 -08:00
|
|
|
.filter-subset
|
2017-04-13 12:49:07 -07:00
|
|
|
%strong= t('admin.accounts.order.title')
|
2016-12-13 04:42:10 -08:00
|
|
|
%ul
|
2017-04-13 12:49:07 -07:00
|
|
|
%li= filter_link_to t('admin.accounts.order.alphabetic'), recent: nil
|
|
|
|
%li= filter_link_to t('admin.accounts.order.most_recent'), recent: '1'
|
2016-12-04 09:10:40 -08:00
|
|
|
|
2017-05-17 15:38:01 -07:00
|
|
|
= form_tag admin_accounts_url, method: 'GET', class: 'simple_form' do
|
2017-05-16 18:00:34 -07:00
|
|
|
.fields-group
|
|
|
|
- Admin::FilterHelper::ACCOUNT_FILTERS.each do |key|
|
|
|
|
- if params[key].present?
|
|
|
|
= hidden_field_tag key, params[key]
|
|
|
|
|
2017-11-01 06:46:05 -07:00
|
|
|
- %i(username by_domain display_name email ip).each do |key|
|
2017-05-16 18:00:34 -07:00
|
|
|
.input.string.optional
|
2017-05-17 15:38:01 -07:00
|
|
|
= text_field_tag key, params[key], class: 'string optional', placeholder: I18n.t("admin.accounts.#{key}")
|
2017-05-16 18:00:34 -07:00
|
|
|
|
|
|
|
.actions
|
2017-05-17 15:38:01 -07:00
|
|
|
%button= t('admin.accounts.search')
|
|
|
|
= link_to t('admin.accounts.reset'), admin_accounts_path, class: 'button negative'
|
2017-05-16 18:00:34 -07:00
|
|
|
|
2017-09-08 17:26:58 -07:00
|
|
|
.table-wrapper
|
|
|
|
%table.table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th= t('admin.accounts.username')
|
|
|
|
%th= t('admin.accounts.domain')
|
2017-12-13 03:15:10 -08:00
|
|
|
%th
|
2017-09-08 17:26:58 -07:00
|
|
|
%th
|
|
|
|
%tbody
|
|
|
|
= render @accounts
|
2016-12-03 10:30:13 -08:00
|
|
|
|
2017-04-10 16:11:41 -07:00
|
|
|
= paginate @accounts
|