{{ site_name }} - {% trans "Account Information" %}
{% include "common_libs.html" %}
{% include "_header.html" %}
{% trans "Display name, avatar and other information" %}
{% if allow_any_site %}
{% trans 'Email' %}{% trans "Fediverse (Mastodon)" %}
{% if request.user.mastodon %}
{% endif %}
{% if enable_threads %}
{% trans "Threads.net" %}
{% if request.user.threads %}
{% endif %}
{% endif %}
{% if enable_bluesky %}
{% trans "Bluesky (ATProto)" %}
{% if request.user.bluesky %}
{% endif %}
{% endif %}
{% endif %}
{% if request.user.social_accounts.all %}
{% trans 'Sync and import social account' %}
{% endif %}
{% trans 'Users you are following' %}
{% include 'users/relationship_list.html' with id="follow" list=request.user.identity.following_identities.all %}
{% trans 'Users who follow you' %}
{% include 'users/relationship_list.html' with id="follower" list=request.user.identity.follower_identities.all %}
{% trans 'Users who request to follow you' %}
{% include 'users/relationship_list.html' with id="follow_request" list=request.user.identity.requested_follower_identities.all %}
{% trans 'Users you are muting' %}
{% include 'users/relationship_list.html' with id="mute" list=request.user.identity.muting_identities.all %}
{% trans 'Users you are blocking' %}
{% include 'users/relationship_list.html' with id="block" list=request.user.identity.blocking_identities.all %}
{% if allow_any_site %}
{% trans 'Delete Account' %}
{% endif %}
{% include "_sidebar.html" with show_profile=1 identity=request.user.identity %}
{% include "_footer.html" %}