mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 21:06:22 +00:00
24 lines
550 B
Text
24 lines
550 B
Text
-# Componente Remote_Profile
|
|
|
|
.flex.py-2.mx-2
|
|
%dl
|
|
%dt= t('.profile_name')
|
|
%dd= remote_profile['name']
|
|
|
|
%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']
|
|
|
|
= render 'moderation_queue/comments', moderation_queue: @moderation_queue
|
|
|
|
%dl.mt-5
|
|
%dt= t('.profile_name')
|
|
%dd= remote_profile['name']
|
|
|
|
-# Botones de Moderación
|
|
= render 'components/comments_btn_box'
|