5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 23:46:22 +00:00
panel/app/views/moderation_queue/_comment.haml

25 lines
795 B
Text
Raw Normal View History

-# Componente Comentario
.row.no-gutters
.col-1
= render 'components/checkbox', id: comment['id']
.col-11
2024-03-04 14:59:29 +00:00
.d-flex.flex-row.align-items-center.justify-content-between
%h4.mb-0
%a{ href: comment['attributedTo'] }= sanitize profile['preferredUsername']
%small
= render 'layouts/time', time: comment['published']
2024-03-04 14:59:29 +00:00
- if comment['inReplyTo'].present?
%dl
%dt.d-inline
%small= t('.reply_to')
%dd.d-inline
%small
%a{ href: comment['inReplyTo'] }= sanitize comment['inReplyTo']
%div
- if comment['summary'].present?
= render 'layouts/details', summary: comment['summary'], summary_class: 'h5' do
= sanitize comment['content']
- else
= sanitize comment['content']