2024-01-22 17:17:24 +00:00
|
|
|
-# Componente Comentario
|
2024-02-27 18:05:16 +00:00
|
|
|
|
|
|
|
.row.no-gutters
|
|
|
|
.col-1
|
|
|
|
= render 'components/checkbox', id: comment['id']
|
|
|
|
.col-11
|
|
|
|
.row.no-gutters
|
|
|
|
.col.col-lg-10.d-inline-flex.justify-content-between
|
|
|
|
%h4
|
|
|
|
%a{ href: comment['attributedTo'] }= profile['preferredUsername']
|
|
|
|
= render 'layouts/time', time: comment['published']
|
|
|
|
- if comment['inReplyTo']
|
2024-02-19 16:57:39 +00:00
|
|
|
.row.no-gutters
|
2024-02-14 17:44:33 +00:00
|
|
|
.col.p-0
|
2024-02-27 18:05:16 +00:00
|
|
|
%p
|
|
|
|
%span= t('.reply_to')
|
|
|
|
%span
|
|
|
|
%a{ href: comment['inReplyTo'] }= comment['inReplyTo']
|
|
|
|
.row.no-gutters
|
|
|
|
.col.p-0
|
|
|
|
- if comment['summary']
|
|
|
|
- summary = comment['summary']
|
|
|
|
= render 'layouts/details', summary: summary do
|
2024-02-21 21:08:54 +00:00
|
|
|
%p= comment['content'].html_safe
|
2024-02-27 18:05:16 +00:00
|
|
|
- else
|
|
|
|
%p= comment['content'].html_safe
|
2024-02-23 17:47:24 +00:00
|
|
|
|