5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-11-22 17:46:22 +00:00
panel/app/views/components/_actor.haml
2024-03-06 17:36:13 -03:00

22 lines
548 B
Text

-# Componente Remote_Profile
- uri = text_plain(remote_profile['id'])
.py-2
%dl
%dt= t('.profile_name')
%dd= text_plain remote_profile['name']
%dt= t('.preferred_name')
%dd= text_plain remote_profile['preferredUsername']
%dt= t('.profile_id')
%dd
= link_to uri, uri
- if remote_profile['published'].present?
%dt= t('.profile_published')
%dd
= render 'layouts/time', time: text_plain(remote_profile['published'])
%dt= t('.profile_summary')
%dd= sanitize remote_profile['summary']