2024-03-01 19:11:33 +00:00
|
|
|
%form{ action: site_actor_moderations_action_on_several_path, method: :post }
|
|
|
|
.row.no-gutters.pt-2{ data: { controller: 'select-all' } }
|
|
|
|
.col-1.d-flex.align-items-center
|
|
|
|
= render 'components/select_all', id: 'actors'
|
|
|
|
.col-11
|
|
|
|
-# Filtros
|
|
|
|
= render 'components/profiles_filters', actor_moderations: actor_moderations
|
|
|
|
.col-12
|
|
|
|
- if actor_moderations.count.zero?
|
|
|
|
%h4= t('moderation_queue.nothing')
|
|
|
|
- actor_moderations.find_each do |actor_moderation|
|
|
|
|
- cache [actor_moderation, actor_moderation.actor] do
|
|
|
|
%hr
|
|
|
|
= render 'account', actor_moderation: actor_moderation, profile: actor_moderation.actor.content
|