2024-02-02 17:45:25 +00:00
|
|
|
-# Componente Remote_Profile
|
|
|
|
|
2024-01-23 20:04:38 +00:00
|
|
|
.flex.py-2.mx-2.text-center
|
2024-02-05 15:22:23 +00:00
|
|
|
- botoneras_moderation_queue
|
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_pause'), path: '/'
|
|
|
|
= render 'components/dropdown_item', text: t('moderation_queue.filter_box.submenu_reject'), path: '/'
|
|
|
|
= render 'components/dropdown_item', text: t('moderation_queue.filter_box.submenu_accept'), path: '/'
|
|
|
|
= render 'components/dropdown', text: t('moderation_queue.filter_box.text_show') do
|
|
|
|
= render 'components/dropdown_item', text: t('moderation_queue.filter_box.submenu_pause'), path: '/'
|
|
|
|
= render 'components/dropdown_item', text: t('moderation_queue.filter_box.submenu_reject'), path: '/'
|
|
|
|
= render 'components/dropdown_item', text: t('moderation_queue.filter_box.submenu_accept'), path: '/'
|
|
|
|
= render 'components/dropdown_item', text: t('moderation_queue.filter_box.submenu_report'), path: '/'
|
|
|
|
|
|
|
|
%h4.my-2= t('.profile_name') + ': ' + remote_profile['name']
|
2024-02-02 17:45:25 +00:00
|
|
|
%h5= t('.profile_id') + ': ' + remote_profile['id']
|
2024-01-29 18:32:47 +00:00
|
|
|
%h5= t('.profile_published') + ': ' + remote_profile['published'].to_datetime.strftime('%m/%d/%Y')
|
2024-02-02 17:45:25 +00:00
|
|
|
%h5= t('.profile_summary') + ':'
|
|
|
|
%p= sanitize remote_profile['summary']
|
|
|
|
= render 'moderation_queue/button_box', btn_params: @profile_btn_params
|