44 lines
2.4 KiB
Plaintext
44 lines
2.4 KiB
Plaintext
- content_for :header_tags do
|
|
= javascript_pack_tag 'admin', integrity: true, async: true, crossorigin: 'anonymous'
|
|
|
|
- content_for :page_title do
|
|
= "All Statuses"
|
|
|
|
= form_tag admin_statuses_url, method: 'GET', class: 'simple_form' do
|
|
.fields-group
|
|
.input.string.optional
|
|
= text_field_tag :text, params[:text], class: 'string optional', placeholder: "Text contains"
|
|
.input.string.optional
|
|
= text_field_tag :id, params[:id], class: 'string optional', placeholder: "Id"
|
|
.input.string.optional
|
|
= text_field_tag :account_id, params[:account_id], class: 'string optional', placeholder: "Account Id"
|
|
.input.string.optional
|
|
= text_field_tag :group_id, params[:group_id], class: 'string optional', placeholder: "Group Id"
|
|
.input.string.optional
|
|
= text_field_tag :preview_card_id, params[:preview_card_id], class: 'string optional', placeholder: "Preview Card Id"
|
|
.input.string.optional
|
|
= text_field_tag :created_at_gte, params[:created_at_gte], class: 'string optional', placeholder: "Created >= (MM-DD-YYYY)"
|
|
.input.string.optional
|
|
= text_field_tag :created_at_lte, params[:created_at_lte], class: 'string optional', placeholder: "Created <= (MM-DD-YYYY)"
|
|
|
|
.actions
|
|
%button= t('admin.accounts.search')
|
|
= link_to t('admin.accounts.reset'), admin_statuses_path, class: 'button negative'
|
|
|
|
= form_for(@form, url: admin_statuses_path) do |f|
|
|
= hidden_field_tag :page, params[:page]
|
|
= hidden_field_tag :media, params[:media]
|
|
|
|
.batch-table
|
|
.batch-table__toolbar
|
|
%label.batch-table__toolbar__select.batch-checkbox-all
|
|
= check_box_tag :batch_checkbox_all, nil, false
|
|
.batch-table__toolbar__actions
|
|
= f.button safe_join([fa_icon('eye-slash'), t('admin.statuses.batch.nsfw_on')]), name: :nsfw_on, class: 'table-action-link', type: :submit, data: { confirm: t('admin.reports.are_you_sure') }
|
|
= f.button safe_join([fa_icon('eye'), t('admin.statuses.batch.nsfw_off')]), name: :nsfw_off, class: 'table-action-link', type: :submit, data: { confirm: t('admin.reports.are_you_sure') }
|
|
= f.button safe_join([fa_icon('trash'), t('admin.statuses.batch.delete')]), name: :delete, class: 'table-action-link', type: :submit, data: { confirm: t('admin.reports.are_you_sure') }
|
|
.batch-table__body
|
|
= render partial: 'admin/reports/status', collection: @statuses, locals: { f: f }
|
|
|
|
= paginate @statuses
|