mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 00:56:22 +00:00
22 lines
529 B
Text
22 lines
529 B
Text
|
-# Componente Remote_Profile
|
||
|
|
||
|
.py-2
|
||
|
%dl
|
||
|
%dt= t('.profile_name')
|
||
|
%dd= sanitize remote_profile['name']
|
||
|
|
||
|
%dt= t('.preferred_name')
|
||
|
%dd= sanitize remote_profile['preferredUsername']
|
||
|
|
||
|
%dt= t('.profile_id')
|
||
|
%dd
|
||
|
= link_to sanitize(remote_profile['id'])
|
||
|
|
||
|
- if remote_profile['published'].present?
|
||
|
%dt= t('.profile_published')
|
||
|
%dd
|
||
|
= render 'layouts/time', time: sanitize(remote_profile['published'])
|
||
|
%dt= t('.profile_summary')
|
||
|
%dd
|
||
|
= sanitize remote_profile['summary']
|