5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-23 07:06:23 +00:00

fix: corregido compo _remote_profile para hacerlo semantico con dl
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
jazzari 2024-02-09 16:54:16 -03:00
parent ba26b505e4
commit 529711c47d

View file

@ -1,12 +1,18 @@
-# Componente Remote_Profile
.flex.py-2.mx-2
%dl
%dt= t('.profile_name')
%dd= remote_profile['name']
%h4.my-2= 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')
%h5= t('.profile_summary') + ':'
%p= sanitize remote_profile['summary']
%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