2024-02-02 17:45:25 +00:00
|
|
|
-# Componente Remote_Profile
|
|
|
|
|
2024-02-08 17:41:50 +00:00
|
|
|
.flex.py-2.mx-2
|
2024-02-05 17:51:17 +00:00
|
|
|
|
|
|
|
%h4.my-2= t('.profile_name') + ': ' + remote_profile['name']
|
2024-02-06 15:57:42 +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']
|
2024-02-07 17:42:25 +00:00
|
|
|
|
2024-02-07 18:03:48 +00:00
|
|
|
= render 'moderation_queue/comments', moderation_queue: @moderation_queue
|
|
|
|
|
2024-02-08 17:41:50 +00:00
|
|
|
%h3.pt-4= t('.profile')
|
|
|
|
%h4.my-2= t('.profile_name') + ': ' + remote_profile['name']
|
|
|
|
|
2024-02-07 17:42:25 +00:00
|
|
|
-# Botones de Moderación
|
2024-02-08 17:41:50 +00:00
|
|
|
.d-flex.py-4
|
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: ''
|
|
|
|
= render 'moderation_queue/btn_base', text: t('moderation_queue.profile_button_box.text_check'), class: @class, href: ''
|
|
|
|
= render 'moderation_queue/btn_base', text: t('moderation_queue.profile_button_box.text_deny'), class: @class, href: ''
|
|
|
|
= render 'moderation_queue/btn_base', text: t('moderation_queue.profile_button_box.text_report'), class: @class, href: ''
|