diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2019-04-06 17:53:45 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-06 17:53:45 +0200 |
commit | e1d0390e29b60a6fa06d91a5d33dfb0e81fe7dd7 (patch) | |
tree | f9ac0846d75644ca5e49e8e26433a2c63c1b4f22 /app/views/admin/accounts | |
parent | 2c63e0292a0a0a530ce814246bb6762983808135 (diff) |
Add batch actions for approving and rejecting pending accounts (#10469)
Diffstat (limited to 'app/views/admin/accounts')
-rw-r--r-- | app/views/admin/accounts/index.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/accounts/index.html.haml b/app/views/admin/accounts/index.html.haml index 66808add7..7e9adb3ff 100644 --- a/app/views/admin/accounts/index.html.haml +++ b/app/views/admin/accounts/index.html.haml @@ -10,7 +10,7 @@ .filter-subset %strong= t('admin.accounts.moderation.title') %ul - %li= filter_link_to t('admin.accounts.moderation.pending'), pending: '1', silenced: nil, suspended: nil + %li= link_to safe_join([t('admin.accounts.moderation.pending'), "(#{number_with_delimiter(User.pending.count)})"], ' '), admin_pending_accounts_path %li= filter_link_to t('admin.accounts.moderation.active'), silenced: nil, suspended: nil, pending: nil %li= filter_link_to t('admin.accounts.moderation.silenced'), silenced: '1', suspended: nil, pending: nil %li= filter_link_to t('admin.accounts.moderation.suspended'), suspended: '1', silenced: nil, pending: nil |