2016-12-13 12:42:10 +00:00
|
|
|
- content_for :page_title do
|
2017-04-13 20:49:07 +01:00
|
|
|
= t('admin.accounts.title')
|
2016-12-13 12:42:10 +00:00
|
|
|
|
|
|
|
.filters
|
|
|
|
.filter-subset
|
2017-04-13 20:49:07 +01:00
|
|
|
%strong= t('admin.accounts.location.title')
|
2016-12-13 12:42:10 +00:00
|
|
|
%ul
|
2017-04-13 20:49:07 +01: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 12:42:10 +00:00
|
|
|
.filter-subset
|
2017-04-13 20:49:07 +01:00
|
|
|
%strong= t('admin.accounts.moderation.title')
|
2016-12-13 12:42:10 +00:00
|
|
|
%ul
|
2017-04-13 20:49:07 +01: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 12:42:10 +00:00
|
|
|
.filter-subset
|
2017-04-13 20:49:07 +01:00
|
|
|
%strong= t('admin.accounts.order.title')
|
2016-12-13 12:42:10 +00:00
|
|
|
%ul
|
2017-04-13 20:49:07 +01: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 17:10:40 +00:00
|
|
|
|
2017-05-17 02:00:34 +01: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 18:08:07 +00:00
|
|
|
%table.table
|
|
|
|
%thead
|
|
|
|
%tr
|
2017-04-13 20:49:07 +01:00
|
|
|
%th= t('admin.accounts.username')
|
|
|
|
%th= t('admin.accounts.domain')
|
2017-04-23 03:43:42 +01:00
|
|
|
%th= t('admin.accounts.confirmed')
|
2017-02-14 23:22:58 +00:00
|
|
|
%th= fa_icon 'paper-plane-o'
|
2016-12-04 17:10:40 +00:00
|
|
|
%th
|
2016-12-03 18:08:07 +00:00
|
|
|
%tbody
|
2017-05-02 19:56:28 +01:00
|
|
|
= render @accounts
|
2016-12-03 18:30:13 +00:00
|
|
|
|
2017-04-11 00:11:41 +01:00
|
|
|
= paginate @accounts
|