{% extends "base.html" %} {% load i18n %} {% load gravatar_tags %} {% block col-left %}
{% if profile.is_team %}{% trans "Team" %}{% else %}{% trans "User" %}{% endif %}: {{ profile.user }}
{% if user == profile.user %} {% endif %}
{% endblock %} {% block col-main %}
{% if profile.is_team %} {% trans "Team profile" %} {% else %} {% trans "User profile" %} {% endif %}
{% trans
{% if not profile.is_team %} {% endif %}
{% if profile.is_team %}{% trans "Team" %}{% else %}{% trans "User" %}{% endif %} {{ profile.user.username }}
{% trans "Full name" %} {{ profile.user.get_full_name|default:"-" }}

{% trans "Member of projects" %}

{% for project in project_list %} {% endfor %}
{% trans "Project" %} {% trans "Author" %} {% trans "Category" %}
{{ project.name }} {{ project.author }} {{ project.category|default:"-" }}

{% trans "Member of teams" %}

{% for group in groups %} {% endfor %}
{% trans "Team" %}
{{ group }}
{% if profile.is_team %}

{% trans "Members of this team" %}

{% for user in profile.group.user_set.all %} {% endfor %}
{% trans "User" %}
{{ user }}
{% endif %}
{% endblock %}