{% extends 'userena/userena_menu.html' %} {% load i18n %} {% block userena_content %} {{ super.block }}
{% trans {% if profile.user.get_full_name %}

{% trans "Name" %}
{{ profile.user.get_full_name }}

{% endif %} {% if profile.user.email %}

{% trans "Email" %}
{{ profile.user.email }}

{% endif %} {% if profile.age %}

{% trans "Age" %}
{{ profile.age }}

{% endif %} {% if profile.website %}

{% trans "Website" %}
{{ profile.website }}

{% endif %} {% if profile.location %}

{% trans "Location" %}
{{ profile.location }}

{% endif %} {% if profile.about_me %}

{% trans "About me" %}
{{ profile.about_me }}

{% endif %}
{% url socialauth_begin 'twitter' as social_twitter_url %} {% if social_twitter_url %} {% if social_auth.associated %}

Associated social accounts

{% endif %}

Associate new social account

{% endif %} {% endblock %}