{% set profile = user.profile %}

{{ profile.full_name }}

{{ profile.biography|enrich }}

{% if profile.location %}

Location: {{ profile.location|locationdata }}

{% endif %} {% if profile.year %}

Year: {{ profile.year }}

{% endif %} {% if profile.website %} {% set website = profile.website %} {% set website = website if website.startswith(('http://', 'https://')) else 'http://' + website %}

Website: {{ profile.website|urlize }}

{% endif %} {% if profile.instagram %}

Instagram: {{ profile.instagram }}

{% endif %} {% if profile.facebook %}

Facebook: {{ profile.facebook }}

{% endif %} {% if profile.telegram %}

Telegram: {{ profile.telegram }}

{% endif %}

{{ user.messages|count }} messages - {{ user.followers()|count }} followers - {{ user.following()|count }} following

{% if user == current_user %}

Edit profile

{% endif %}