{% extends "base.html" %} {% load i18n thumbnail static avatar %} {% block title %}{{ object.username }}{% endblock %} {% block content %}
{% if object.has_social_share %} {% endif %}

{{ object.username }}

{% if object.city or object.country %}

{{object.city}} {% if object.city and object.country %}, {% endif %} {{object.country.name}}

{% endif %} {% if object.languages %}

{{object.languages}}

{% endif %} {% if object.birthdate %}

{{ object.age }} {% trans 'years old' %}

{% endif %}
{% if object.description %}
{% trans 'Bio' %}

{{ object.description }}

{% endif %}
{% if object.city or object.country %}

{{object.city}}{% if object.city and object.country %}, {% endif %} {{object.country.name}}

{% endif %} {% if object.languages %}

{{object.languages}}

{% endif %} {% if object.birthdate %}

{{ object.age }} {% trans 'years old' %}

{% endif %} {% if object.description %}

{{ object.description }}

{% endif %}
{% if view.get_participated_projects %}
{% for project in view.get_participated_projects %} {% include 'euth_projects/includes/project_list_item.html' with project=project follow_user=object %} {% endfor %}
{% else %}

{% blocktrans with username=object.username %}{{ username }} follows no projects at the moment.{% endblocktrans %}

{% endif %}
{% endblock %}