{% load i18n %} {% load gravatar %} {% load ext_theme_tags %}
{% if is_editable %}
{% else %} {% endif %}
{% with full_name=profile.user.get_full_name %} {% if full_name %}
{{ full_name }}
{{ profile.user.username }}
{% else %}
{{ profile.user.username }}
{% endif %} {% endwith %}
{% if profile.homepage %}
{% blocktrans asvar text_homepage trimmed %} User's homepage {% endblocktrans %} {% include "includes/elements/link.html" with is_external=True url=profile.homepage text=profile.homepage label=text_homepage %}
{% endif %} {% for socialaccount in profile.user.socialaccount_set.all %} {% with socialaccount.get_provider_account as provider %}
{% blocktrans with provider=provider.get_brand.name asvar text_provider trimmed %} User's {{ provider }} profile {% endblocktrans %} {% include "includes/elements/link.html" with is_external=True url=socialaccount.get_profile_url text=socialaccount|get_account_username label=text_provider %}
{% endwith %} {% endfor %}
{% if is_editable %}

{% trans "View profile" %}

{% endif %}