62 lines
2.3 KiB
Plaintext
62 lines
2.3 KiB
Plaintext
- content_for :page_title do
|
|
= t('admin.accounts.title')
|
|
|
|
.filters
|
|
.filter-subset
|
|
%strong= t('admin.accounts.moderation.title')
|
|
%ul
|
|
%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
|
|
|
|
.filter-subset
|
|
%strong Flags
|
|
%ul
|
|
%li= filter_link_to "All", spam: nil, is_pro: nil, is_donor: nil, is_investor: nil, is_verified: nil
|
|
%li= filter_link_to "Spam", spam: '1'
|
|
%li= filter_link_to "PRO", is_pro: '1'
|
|
%li= filter_link_to "Donor", is_donor: '1'
|
|
%li= filter_link_to "Investor", is_investor: '1'
|
|
%li= filter_link_to "Verified", is_verified: '1'
|
|
|
|
.filter-subset
|
|
%strong= t('admin.accounts.role')
|
|
%ul
|
|
%li= filter_link_to t('admin.accounts.moderation.all'), staff: nil
|
|
%li= filter_link_to t('admin.accounts.roles.staff'), staff: '1'
|
|
|
|
= form_tag admin_accounts_url, method: 'GET', class: 'simple_form' do
|
|
.fields-group
|
|
- Admin::FilterHelper::ACCOUNT_FILTERS.each do |key|
|
|
- if params[key].present?
|
|
= hidden_field_tag key, params[key]
|
|
|
|
- %i(username by_domain display_name email ip note).each do |key|
|
|
- unless key == :by_domain && params[:remote].blank?
|
|
.input.string.optional
|
|
= text_field_tag key, params[key], class: 'string optional', placeholder: I18n.t("admin.accounts.#{key}")
|
|
|
|
.input.string.optional
|
|
= text_field_tag :status_count_gte, params[:status_count_gte], class: 'string optional', placeholder: "Status Count >="
|
|
|
|
.input.string.optional
|
|
= text_field_tag :sign_up_date_gte, params[:sign_up_date_gte], class: 'string optional', placeholder: "Sign up Date >= (MM-DD-YYYY)"
|
|
|
|
.actions
|
|
%button= t('admin.accounts.search')
|
|
= link_to t('admin.accounts.reset'), admin_accounts_path, class: 'button negative'
|
|
|
|
.table-wrapper
|
|
%table.table
|
|
%thead
|
|
%tr
|
|
%th= t('admin.accounts.username')
|
|
%th= t('admin.accounts.most_recent_activity')
|
|
%th Status count
|
|
%th Flags
|
|
%th
|
|
%tbody
|
|
= render @accounts
|
|
|
|
= paginate @accounts
|