{% extends 'layout.html' %} {% load i18n %} {% load humanize %} {% load utilities %} {% load markdown %} {% load layout %} {% load group_tags %} {% load user_page_tags %} {% block title %}{{ user.display_name }}{% endblock %} {% block opengraph %} {% include 'snippets/opengraph.html' with image=user.preview_image %} {% endblock %} {% block content %}
{% block header %}

{% trans "User Profile" %}

{% endblock %}
{% block breadcrumbs %}{% endblock %} {# user bio #}
{% if user.moved_to %} {% include 'user/moved.html' with user=user %} {% else %} {% include 'user/user_preview.html' with user=user %} {% endif %}
{% if user.summary %} {% spaceless %}
{{ user.summary|to_markdown|safe }}
{% endspaceless %} {% endif %}
{% if user.moved_to %}

{{ user.localname }} {% trans "has moved to" %} {% id_to_username user.moved_to %}

{% else %} {% if not is_self and request.user.is_authenticated %} {% include 'snippets/follow_button.html' with user=user %} {% endif %} {% if not is_self %} {% include 'ostatus/remote_follow_button.html' with user=user %} {% endif %} {% if is_self and user.active_follower_requests.all %} {% endif %} {% endif %}
{% block tabs %} {% if not user.moved_to %} {% with user|username as username %} {% endwith %} {% endif %} {% endblock %}
{% if not user.moved_to %} {% block panel %}{% endblock %} {% endif %} {% endblock %}