5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-23 02:26:21 +00:00

Merge remote-tracking branch 'refs/remotes/origin/issue-14966' into issue-14966
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
maki 2024-01-29 16:36:05 -03:00
commit a17a3dc700
5 changed files with 9 additions and 9 deletions

View file

@ -3,12 +3,12 @@
.d-flex.py-2.justify-content-center
-# parámetros de botones
-# text, class, href
- @btn_box_params = [[t('.text_pause'), 'btn-outline-secondary disabled', ''],
- btn_box_params = [[t('.text_pause'), 'btn-outline-secondary disabled', ''],
[t('.text_reject'), 'btn-outline-info', ''],
[t('.text_accept'), 'bg-blue white', ''],
[t('.text_reply'), 'btn-outline-dark', ''],
[t('.text_report'), 'btn-outline-danger', '']]
- @btn_box_params.each do |btn|
- btn_box_params.each do |btn|
- @class = btn[1]
= render 'moderation_queue/btn_base', href: btn[2], class: @class, text: btn[0]

View file

@ -3,10 +3,10 @@
.d-flex.py-2.justify-content-center
-# parámetros de botones
-# text, class, href
- @btn_box_params = [[t('.text_deny'), 'btn-outline-info', ''],
- btn_box_params = [[t('.text_deny'), 'btn-outline-info', ''],
[t('.text_allow'), 'btn-success', 'https://sutty.nl/'],
[t('.text_report'), 'btn-outline-danger', 'https://sutty.nl/']]
- @btn_box_params.each do |btn|
- btn_box_params.each do |btn|
- @class = btn[1]
= render 'moderation_queue/btn_base', href: btn[2], class: @class, text: btn[0]

View file

@ -1,5 +1,5 @@
.flex.py-2.mx-2.text-center
%h4= t('.profile_name') + ": " + @remote_profile['name']
%h5= t('.profile_id') + ": " + @remote_profile['id']
%h5= t('.profile_published') + ": " + @remote_profile['published'].to_datetime.strftime('%m/%d/%Y')
%h4= t('.profile_name') + ': ' + remote_profile['name']
%h5= t('.profile_id') + ': ' + remote_profile['id']
%h5= t('.profile_published') + ': ' + remote_profile['published'].to_datetime.strftime('%m/%d/%Y')
= render 'moderation_queue/profile_button_box'

View file

@ -1,3 +1,3 @@
.flex
%h1.text-center= t('.profile')
= render 'moderation_queue/remote_profile'
= render 'moderation_queue/remote_profile', remote_profile: @remote_profile

View file

@ -1,7 +1,7 @@
.flex
%h3.text-center.py-2 Comentarios
= render 'moderation_queue/comment_filter_box'
- @moderation_queue.each do |comment|
- moderation_queue.each do |comment|
= render 'moderation_queue/comment', comment: comment
.row.d-flex.justify-content-center
= render 'moderation_queue/comment_button_box'