2024-02-07 17:42:25 +00:00
|
|
|
-# Filtros
|
2024-02-05 17:51:17 +00:00
|
|
|
.d-flex.py-2.justify-content-center
|
|
|
|
= render 'components/dropdown', text: t('moderation_queue.filter_box.text_checked') do
|
|
|
|
= render 'components/dropdown_item', text: t('moderation_queue.filter_box.submenu_case'), path: '/'
|
|
|
|
= render 'components/dropdown_item', text: t('moderation_queue.filter_box.submenu_allow'), path: '/'
|
|
|
|
= render 'components/dropdown_item', text: t('moderation_queue.filter_box.submenu_reject'), path: '/'
|
|
|
|
= render 'components/dropdown', text: t('moderation_queue.filter_box.text_show') do
|
|
|
|
= render 'components/dropdown_item', text: t('moderation_queue.filter_box.submenu_allow'), path: '/'
|
|
|
|
= render 'components/dropdown_item', text: t('moderation_queue.filter_box.submenu_reject'), path: '/'
|
2024-02-05 16:13:06 +00:00
|
|
|
|
2024-02-07 20:12:00 +00:00
|
|
|
- @moderation_queue.map{ |c| c['attributedTo'] }.uniq.each do |remote_profile|
|
2024-02-06 19:50:26 +00:00
|
|
|
= render 'account', profile: remote_profile
|
2024-02-07 17:42:25 +00:00
|
|
|
|
|
|
|
-# Botones de Moderación
|
|
|
|
.d-flex.py-4.justify-content-center
|
2024-02-07 20:59:57 +00:00
|
|
|
- @class = 'btn-secondary'
|
2024-02-07 17:42:25 +00:00
|
|
|
= render 'moderation_queue/btn_base', text: t('moderation_queue.profile_button_box.text_approve'), class: @class, href: ''
|
2024-02-07 20:59:57 +00:00
|
|
|
- @class = 'btn-secondary'
|
2024-02-07 17:42:25 +00:00
|
|
|
= render 'moderation_queue/btn_base', text: t('moderation_queue.profile_button_box.text_check'), class: @class, href: ''
|
2024-02-07 20:59:57 +00:00
|
|
|
- @class = 'btn-secondary'
|
2024-02-07 17:42:25 +00:00
|
|
|
= render 'moderation_queue/btn_base', text: t('moderation_queue.profile_button_box.text_deny'), class: @class, href: ''
|
2024-02-07 20:59:57 +00:00
|
|
|
- @class = 'btn-secondary'
|
2024-02-07 17:42:25 +00:00
|
|
|
= render 'moderation_queue/btn_base', text: t('moderation_queue.profile_button_box.text_report'), class: @class, href: ''
|
2024-02-07 20:12:00 +00:00
|
|
|
|