mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 10:26:22 +00:00
fix: corregida posición de botonera de moderacion de comentarios
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
parent
f6a93b5bc2
commit
1eb2230b2a
3 changed files with 6 additions and 5 deletions
|
@ -5,10 +5,10 @@
|
||||||
%input{type: "checkbox", id: ""}
|
%input{type: "checkbox", id: ""}
|
||||||
.col-10
|
.col-10
|
||||||
.row.border.border-white
|
.row.border.border-white
|
||||||
.col.col-1.border.border-white.mr-2
|
.col.col-1.border.border-white.mr-5
|
||||||
%p= comment['published'].to_datetime.strftime('%m/%d/%Y') # falta parsear
|
%p= comment['published'].to_datetime.strftime('%m/%d/%Y') # falta parsear
|
||||||
.col.border.border-white
|
.col.border.border-white
|
||||||
%span.mr-3= t('.source_profile')
|
%span.mr-2= t('.source_profile')
|
||||||
%a{:href => comment['attributedTo']}= comment['attributedTo'] #falta parsear
|
%a{:href => comment['attributedTo']}= comment['attributedTo'] #falta parsear
|
||||||
.row.border.border-white
|
.row.border.border-white
|
||||||
%p.mr-3= t('.reply_to')
|
%p.mr-3= t('.reply_to')
|
||||||
|
@ -16,5 +16,3 @@
|
||||||
%a{:href => comment['inReplyTo']}= comment['inReplyTo']
|
%a{:href => comment['inReplyTo']}= comment['inReplyTo']
|
||||||
.row.border.border-white
|
.row.border.border-white
|
||||||
%p= comment['content'] #falta parsear
|
%p= comment['content'] #falta parsear
|
||||||
.row.d-flex.justify-content-center
|
|
||||||
= render 'moderation_queue/comment_button_box'
|
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
- @moderation_queue.each do |comment|
|
- @moderation_queue.each do |comment|
|
||||||
|
|
||||||
= render 'comment', comment: comment
|
= render 'comment', comment: comment
|
||||||
|
= render 'moderation_queue/comment_button_box'
|
|
@ -2,3 +2,5 @@
|
||||||
%h3.text-center.py-2 Comentarios
|
%h3.text-center.py-2 Comentarios
|
||||||
- @moderation_queue.each do |comment|
|
- @moderation_queue.each do |comment|
|
||||||
= render 'moderation_queue/comment', comment: comment
|
= render 'moderation_queue/comment', comment: comment
|
||||||
|
.row.d-flex.justify-content-center
|
||||||
|
= render 'moderation_queue/comment_button_box'
|
Loading…
Reference in a new issue