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
|
2017-04-13 19:49:07 +00: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 19:49:07 +00:00
|
|
|
%strong= t('admin.accounts.moderation.title')
|
2016-12-13 12:42:10 +00:00
|
|
|
%ul
|
2017-04-13 19:49:07 +00: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 19:49:07 +00:00
|
|
|
%strong= t('admin.accounts.order.title')
|
2016-12-13 12:42:10 +00:00
|
|
|
%ul
|
2017-04-13 19:49:07 +00: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
|
|
|
|
2016-12-03 18:08:07 +00:00
|
|
|
%table.table
|
|
|
|
%thead
|
|
|
|
%tr
|
2017-04-13 19:49:07 +00:00
|
|
|
%th= t('admin.accounts.username')
|
|
|
|
%th= t('admin.accounts.domain')
|
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
|
|
|
|
- @accounts.each do |account|
|
|
|
|
%tr
|
|
|
|
%td= account.username
|
2016-12-04 17:10:40 +00:00
|
|
|
%td
|
|
|
|
- unless account.local?
|
|
|
|
= link_to account.domain, admin_accounts_path(by_domain: account.domain)
|
|
|
|
%td
|
2016-12-03 18:08:07 +00:00
|
|
|
- if account.local?
|
2017-04-13 19:49:07 +00:00
|
|
|
= t('admin.accounts.location.local')
|
2016-12-03 18:08:07 +00:00
|
|
|
- elsif account.subscribed?
|
|
|
|
%i.fa.fa-check
|
|
|
|
- else
|
|
|
|
%i.fa.fa-times
|
2016-12-13 12:42:10 +00:00
|
|
|
%td
|
2017-04-13 19:49:07 +00:00
|
|
|
= table_link_to 'circle', t('admin.accounts.web'), web_path("accounts/#{account.id}")
|
|
|
|
= table_link_to 'globe', t('admin.accounts.public'), TagManager.instance.url_for(account)
|
|
|
|
= table_link_to 'pencil', t('admin.accounts.edit'), admin_account_path(account.id)
|
2016-12-03 18:30:13 +00:00
|
|
|
|
2017-04-10 23:11:41 +00:00
|
|
|
= paginate @accounts
|