You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.7 KiB
61 lines
1.7 KiB
- 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' |
|
|
|
%table.table |
|
%thead |
|
%tr |
|
%th Username |
|
%th Domain |
|
%th Subscribed |
|
%th Silenced |
|
%th Suspended |
|
%th |
|
%tbody |
|
- @accounts.each do |account| |
|
%tr |
|
%td= account.username |
|
%td |
|
- unless account.local? |
|
= link_to account.domain, admin_accounts_path(by_domain: account.domain) |
|
%td |
|
- if account.local? |
|
Local |
|
- elsif account.subscribed? |
|
%i.fa.fa-check |
|
- else |
|
%i.fa.fa-times |
|
%td |
|
- if account.silenced? |
|
%i.fa.fa-check |
|
- else |
|
%i.fa.fa-times |
|
%td |
|
- if account.suspended? |
|
%i.fa.fa-check |
|
- else |
|
%i.fa.fa-times |
|
%td |
|
= table_link_to 'circle', 'Open in web', web_path("accounts/#{account.id}") |
|
= table_link_to 'globe', 'Open public', TagManager.instance.url_for(account) |
|
= table_link_to 'pencil', 'Edit', admin_account_path(account.id) |
|
|
|
= will_paginate @accounts, pagination_options
|
|
|