parent
7c81e7e9c7
commit
68586258ca
@ -1,20 +1,36 @@
|
|||||||
|
%ul.filters
|
||||||
|
%li= link_to 'Local', admin_accounts_path(local: '1')
|
||||||
|
%li= link_to 'Remote', admin_accounts_path(remote: '1')
|
||||||
|
%li= link_to 'Silenced', admin_accounts_path(silenced: '1')
|
||||||
|
%li= link_to 'Most recent', admin_accounts_path(recent: '1')
|
||||||
|
|
||||||
%table.table
|
%table.table
|
||||||
%thead
|
%thead
|
||||||
%tr
|
%tr
|
||||||
%th Username
|
%th Username
|
||||||
%th Domain
|
%th Domain
|
||||||
%th Subscribed
|
%th Subscribed
|
||||||
|
%th Silenced
|
||||||
|
%th
|
||||||
%tbody
|
%tbody
|
||||||
- @accounts.each do |account|
|
- @accounts.each do |account|
|
||||||
%tr
|
%tr
|
||||||
%td= account.username
|
%td= account.username
|
||||||
%td= account.domain
|
%td
|
||||||
%th
|
- unless account.local?
|
||||||
|
= link_to account.domain, admin_accounts_path(by_domain: account.domain)
|
||||||
|
%td
|
||||||
- if account.local?
|
- if account.local?
|
||||||
Local
|
Local
|
||||||
- elsif account.subscribed?
|
- elsif account.subscribed?
|
||||||
%i.fa.fa-check
|
%i.fa.fa-check
|
||||||
- else
|
- else
|
||||||
%i.fa.fa-times
|
%i.fa.fa-times
|
||||||
|
%td
|
||||||
|
- if account.silenced?
|
||||||
|
%i.fa.fa-check
|
||||||
|
- else
|
||||||
|
%i.fa.fa-times
|
||||||
|
%td= link_to 'Edit', admin_account_path(account.id)
|
||||||
|
|
||||||
= will_paginate @accounts, pagination_options
|
= will_paginate @accounts, pagination_options
|
||||||
|
@ -0,0 +1,34 @@
|
|||||||
|
%table.table
|
||||||
|
%tbody
|
||||||
|
%tr
|
||||||
|
%th Username
|
||||||
|
%td= @account.username
|
||||||
|
%tr
|
||||||
|
%th Domain
|
||||||
|
%td= @account.domain
|
||||||
|
%tr
|
||||||
|
%th Display name
|
||||||
|
%td= @account.display_name
|
||||||
|
|
||||||
|
- if @account.local?
|
||||||
|
%tr
|
||||||
|
%th E-mail
|
||||||
|
%td= @account.user.email
|
||||||
|
%tr
|
||||||
|
%th Current IP
|
||||||
|
%td= @account.user.current_sign_in_ip
|
||||||
|
- else
|
||||||
|
%tr
|
||||||
|
%th Profile URL
|
||||||
|
%td= link_to @account.url
|
||||||
|
%tr
|
||||||
|
%th Feed URL
|
||||||
|
%td= link_to @account.remote_url
|
||||||
|
|
||||||
|
= simple_form_for @account, url: admin_account_path(@account.id) do |f|
|
||||||
|
= render 'shared/error_messages', object: @account
|
||||||
|
|
||||||
|
= f.input :silenced, as: :boolean, wrapper: :with_label
|
||||||
|
|
||||||
|
.actions
|
||||||
|
= f.button :button, t('generic.save_changes'), type: :submit
|
Loading…
Reference in new issue