2016-12-13 04:42:10 -08:00
|
|
|
- content_for :page_title do
|
|
|
|
Accounts
|
|
|
|
|
|
|
|
.filters
|
|
|
|
.filter-subset
|
|
|
|
%strong Location
|
|
|
|
%ul
|
|
|
|
%li= filter_link_to 'All', local: nil, remote: nil
|
|
|
|
%li= filter_link_to 'Local', local: '1', remote: nil
|
|
|
|
%li= filter_link_to 'Remote', remote: '1', local: nil
|
|
|
|
.filter-subset
|
|
|
|
%strong Moderation
|
|
|
|
%ul
|
|
|
|
%li= filter_link_to 'All', silenced: nil, suspended: nil
|
|
|
|
%li= filter_link_to 'Silenced', silenced: '1'
|
|
|
|
%li= filter_link_to 'Suspended', suspended: '1'
|
|
|
|
.filter-subset
|
|
|
|
%strong Order
|
|
|
|
%ul
|
|
|
|
%li= filter_link_to 'Alphabetic', recent: nil
|
|
|
|
%li= filter_link_to 'Most recent', recent: '1'
|
2016-12-04 09:10:40 -08:00
|
|
|
|
2016-12-03 10:08:07 -08:00
|
|
|
%table.table
|
|
|
|
%thead
|
|
|
|
%tr
|
|
|
|
%th Username
|
|
|
|
%th Domain
|
|
|
|
%th Subscribed
|
2016-12-04 09:10:40 -08:00
|
|
|
%th Silenced
|
2016-12-06 09:22:59 -08:00
|
|
|
%th Suspended
|
2016-12-04 09:10:40 -08:00
|
|
|
%th
|
2016-12-03 10:08:07 -08:00
|
|
|
%tbody
|
|
|
|
- @accounts.each do |account|
|
|
|
|
%tr
|
|
|
|
%td= account.username
|
2016-12-04 09:10:40 -08:00
|
|
|
%td
|
|
|
|
- unless account.local?
|
|
|
|
= link_to account.domain, admin_accounts_path(by_domain: account.domain)
|
|
|
|
%td
|
2016-12-03 10:08:07 -08:00
|
|
|
- if account.local?
|
|
|
|
Local
|
|
|
|
- elsif account.subscribed?
|
|
|
|
%i.fa.fa-check
|
|
|
|
- else
|
|
|
|
%i.fa.fa-times
|
2016-12-04 09:10:40 -08:00
|
|
|
%td
|
|
|
|
- if account.silenced?
|
|
|
|
%i.fa.fa-check
|
|
|
|
- else
|
|
|
|
%i.fa.fa-times
|
2016-12-06 09:22:59 -08:00
|
|
|
%td
|
|
|
|
- if account.suspended?
|
|
|
|
%i.fa.fa-check
|
|
|
|
- else
|
|
|
|
%i.fa.fa-times
|
2016-12-13 04:42:10 -08:00
|
|
|
%td
|
2017-01-27 18:56:10 -08:00
|
|
|
= table_link_to 'circle', 'Web', web_path("accounts/#{account.id}")
|
|
|
|
= table_link_to 'globe', 'Public', TagManager.instance.url_for(account)
|
2016-12-13 04:42:10 -08:00
|
|
|
= table_link_to 'pencil', 'Edit', admin_account_path(account.id)
|
2016-12-03 10:30:13 -08:00
|
|
|
|
2016-12-03 10:08:07 -08:00
|
|
|
= will_paginate @accounts, pagination_options
|