2017-07-18 10:38:22 -04:00
|
|
|
- content_for :header_tags do
|
|
|
|
= javascript_pack_tag 'admin', integrity: true, async: true, crossorigin: 'anonymous'
|
|
|
|
|
|
|
|
- content_for :page_title do
|
|
|
|
= t('admin.statuses.title')
|
2018-05-05 17:06:29 -04:00
|
|
|
\-
|
|
|
|
= "@#{@account.acct}"
|
2017-07-18 10:38:22 -04:00
|
|
|
|
|
|
|
.filters
|
|
|
|
.filter-subset
|
|
|
|
%strong= t('admin.statuses.media.title')
|
|
|
|
%ul
|
|
|
|
%li= link_to t('admin.statuses.no_media'), admin_account_statuses_path(@account.id, current_params.merge(media: nil)), class: !params[:media] && 'selected'
|
|
|
|
%li= link_to t('admin.statuses.with_media'), admin_account_statuses_path(@account.id, current_params.merge(media: true)), class: params[:media] && 'selected'
|
2018-05-05 17:06:29 -04:00
|
|
|
.back-link{ style: 'flex: 1 1 auto; text-align: right' }
|
|
|
|
= link_to admin_account_path(@account.id) do
|
|
|
|
%i.fa.fa-chevron-left.fa-fw
|
|
|
|
= t('admin.statuses.back_to_account')
|
|
|
|
|
|
|
|
%hr.spacer/
|
|
|
|
|
|
|
|
= form_for(@form, url: admin_account_statuses_path(@account.id)) do |f|
|
|
|
|
= hidden_field_tag :page, params[:page]
|
|
|
|
= hidden_field_tag :media, params[:media]
|
2017-07-18 10:38:22 -04:00
|
|
|
|
2018-05-05 17:06:29 -04:00
|
|
|
.batch-table
|
|
|
|
.batch-table__toolbar
|
|
|
|
%label.batch-table__toolbar__select.batch-checkbox-all
|
2017-07-18 10:38:22 -04:00
|
|
|
= check_box_tag :batch_checkbox_all, nil, false
|
2018-05-05 17:06:29 -04:00
|
|
|
.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 }
|
2017-07-18 10:38:22 -04:00
|
|
|
|
|
|
|
= paginate @statuses
|