mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 06:56:22 +00:00
fix: corregido compo _remote_profile para hacerlo semantico con dl
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
ba26b505e4
commit
529711c47d
1 changed files with 11 additions and 5 deletions
|
@ -1,12 +1,18 @@
|
||||||
-# Componente Remote_Profile
|
-# Componente Remote_Profile
|
||||||
|
|
||||||
.flex.py-2.mx-2
|
.flex.py-2.mx-2
|
||||||
|
%dl
|
||||||
|
%dt= t('.profile_name')
|
||||||
|
%dd= remote_profile['name']
|
||||||
|
|
||||||
%h4.my-2= t('.profile_name') + ': ' + remote_profile['name']
|
%dt= t('.profile_id')
|
||||||
%h5= t('.profile_id') + ': ' + remote_profile['id']
|
%dd= remote_profile['id']
|
||||||
%h5= t('.profile_published') + ': ' + remote_profile['published'].to_datetime.strftime('%m/%d/%Y')
|
|
||||||
%h5= t('.profile_summary') + ':'
|
%dt= t('.profile_published')
|
||||||
%p= sanitize remote_profile['summary']
|
%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
|
= render 'moderation_queue/comments', moderation_queue: @moderation_queue
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue