{% extends "root.html" %} {% block head %} {{ profile.username }} - {{ config.name }} {% endblock %} {% block body %} {{ macros::nav() }}
{{ components::banner(username=profile.username) }}
{{ components::avatar(username=profile.username,size="72px") }}

{{ components::username(user=profile) }} {% if profile.is_verified %} {{ icon "badge-check" }} {% endif %} {% if is_supporter %} {{ icon "star" }} {% endif %}

{{ profile.username }}
{{ profile.settings.biography|markdown|safe }}
{% if profile.connections.Spotify and profile.connections.Spotify[0].data.name %} {{ components::spotify_playing(state=profile.connections.Spotify[1]) }} {% elif profile.connections.LastFm and profile.connections.LastFm[0].data.name %} {{ components::last_fm_playing(state=profile.connections.LastFm[1]) }} {% endif %}
ID
Joined {{ profile.created }}
Posts {{ profile.post_count }}
{% if not profile.settings.private_last_seen or is_self or is_helper %}
Last seen
{{ components::online_indicator(user=profile) }} {{ profile.last_seen }}
{% endif %}
{% if not is_self and user %}
{{ text "auth:label.relationship" }}
{% if not is_blocking %} {% else %} {% endif %} {% if not user.settings.private_chats or is_following_you %} {% endif %} {% if is_helper %} {{ icon "shield" }} {{ text "general:action.manage" }} {% endif %}
{% endif %} {% if not profile.settings.private_communities or is_self or is_helper %}
{{ icon "users-round" }} {{ text "auth:label.joined_communities" }}
{% endif %}
{% for key, value in profile.connections %} {% if value[0].data.name and value[0].show_on_profile %}
{{ components::connection_icon(key=key) }} {{ value[0].data.name }}
{% endif %} {% endfor %}
{% block content %}{% endblock %}
{% if not is_self and profile.settings.warning %} {% endif %} {% if not use_user_theme %} {{ components::theme(user=profile, theme_preference=profile.settings.profile_theme) }} {% endif %} {% endblock %}