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-09 19:54:16 +00:00
|
|
|
%dl
|
|
|
|
%dt= t('.profile_name')
|
|
|
|
%dd= remote_profile['name']
|
2024-02-05 17:51:17 +00:00
|
|
|
|
2024-02-09 19:54:16 +00:00
|
|
|
%dt= t('.profile_id')
|
|
|
|
%dd= remote_profile['id']
|
|
|
|
|
|
|
|
%dt= t('.profile_published')
|
|
|
|
%dd= remote_profile['published'].to_datetime.strftime('%m/%d/%Y')
|
|
|
|
|
|
|
|
%dt= t('.profile_summary')
|
|
|
|
%dd= 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-09 17:45:12 +00:00
|
|
|
= render 'components/comments_btn_box'
|