Add suspend account functionality to admin UI
This commit is contained in:
parent
f406e01fcf
commit
f978b06dd1
7 changed files with 56 additions and 13 deletions
|
@ -2,6 +2,7 @@
|
|||
%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 'Suspended', admin_accounts_path(suspended: '1')
|
||||
%li= link_to 'Most recent', admin_accounts_path(recent: '1')
|
||||
|
||||
%table.table
|
||||
|
@ -11,6 +12,7 @@
|
|||
%th Domain
|
||||
%th Subscribed
|
||||
%th Silenced
|
||||
%th Suspended
|
||||
%th
|
||||
%tbody
|
||||
- @accounts.each do |account|
|
||||
|
@ -31,6 +33,11 @@
|
|||
%i.fa.fa-check
|
||||
- else
|
||||
%i.fa.fa-times
|
||||
%td
|
||||
- if account.suspended?
|
||||
%i.fa.fa-check
|
||||
- else
|
||||
%i.fa.fa-times
|
||||
%td= link_to 'Edit', admin_account_path(account.id)
|
||||
|
||||
= will_paginate @accounts, pagination_options
|
||||
|
|
|
@ -33,3 +33,5 @@
|
|||
|
||||
.actions
|
||||
= f.button :button, t('generic.save_changes'), type: :submit
|
||||
|
||||
= link_to 'Perform full suspension', suspend_admin_account_path(@account.id), method: :post, data: { confirm: 'Are you sure?' }, class: 'button'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue