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
|
2017-04-13 15:49:07 -04:00
|
|
|
%li= filter_link_to t('admin.accounts.location.all'), local: nil, remote: nil
|
|
|
|
%li= filter_link_to t('admin.accounts.location.local'), local: '1', remote: nil
|
|
|
|
%li= filter_link_to t('admin.accounts.location.remote'), remote: '1', local: nil
|
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
|
2017-04-13 15:49:07 -04:00
|
|
|
%li= filter_link_to t('admin.accounts.moderation.all'), silenced: nil, suspended: nil
|
|
|
|
%li= filter_link_to t('admin.accounts.moderation.silenced'), silenced: '1'
|
|
|
|
%li= filter_link_to t('admin.accounts.moderation.suspended'), suspended: '1'
|
2016-12-13 07:42:10 -05:00
|
|
|
.filter-subset
|
2017-04-13 15:49:07 -04:00
|
|
|
%strong= t('admin.accounts.order.title')
|
2016-12-13 07:42:10 -05:00
|
|
|
%ul
|
2017-04-13 15:49:07 -04: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 12:10:40 -05:00
|
|
|
|
2017-05-16 21:00:34 -04:00
|
|
|
= form_tag(admin_accounts_url, { method: 'GET', class: 'simple_form' }) do
|
|
|
|
.fields-group
|
|
|
|
- Admin::FilterHelper::ACCOUNT_FILTERS.each do |key|
|
|
|
|
- if params[key].present?
|
|
|
|
= hidden_field_tag key, params[key]
|
|
|
|
|
|
|
|
- %i(username display_name email ip).each do |key|
|
|
|
|
.input.string.optional
|
|
|
|
.label_input
|
|
|
|
%label.string.optional= t("admin.accounts.#{key}")
|
|
|
|
= text_field_tag key, params[key], class: 'string optional'
|
|
|
|
|
|
|
|
.actions
|
|
|
|
%button.btn= t('admin.accounts.search')
|
|
|
|
|
2016-12-03 13:08:07 -05:00
|
|
|
%table.table
|
|
|
|
%thead
|
|
|
|
%tr
|
2017-04-13 15:49:07 -04:00
|
|
|
%th= t('admin.accounts.username')
|
|
|
|
%th= t('admin.accounts.domain')
|
2017-04-22 22:43:42 -04:00
|
|
|
%th= t('admin.accounts.confirmed')
|
2017-02-14 18:22:58 -05:00
|
|
|
%th= fa_icon 'paper-plane-o'
|
2016-12-04 12:10:40 -05:00
|
|
|
%th
|
2016-12-03 13:08:07 -05:00
|
|
|
%tbody
|
2017-05-02 14:56:28 -04:00
|
|
|
= render @accounts
|
2016-12-03 13:30:13 -05:00
|
|
|
|
2017-04-10 19:11:41 -04:00
|
|
|
= paginate @accounts
|