{% extends "userprofile/base.html" %} {% load i18n %} {% load avatars %} {% load txcommontags %} {% load pagination_tags %} {% block title %}{{ profile.user }}'s public profile{% endblock %} {% block robots %}noindex,nofollow{% endblock %} {% block extrajs %} {% if profile.latitude and profile.longitude %} {% endif %} {% endblock %} {% block breadcrumb %}{% homelink %} » {% trans "Profile" %} » {{ profile.user }}{% endblock %} {% block content_title %}

{% blocktrans with profile.user as user %}Public profile of {{ user }}{% endblocktrans %}

{% endblock %} {% block userprofile_content %}
{% if profile.latitude and profile.longitude %}
{% endif %}
{{ profile.user }} {% if profile.about %} {{ profile.about }} {% endif %} {% url user_nudge profile.user as user_nudge_url %} {% if request.user.is_authenticated and user_nudge_url %} {% ifnotequal profile.user request.user %}
{% endifnotequal %} {% endif %}
{% if profile.firstname %} {% endif %} {% if profile.native_language %} {% endif %} {% if profile.blog %} {% endif %} {% if profile.twitter %} {% endif %} {% if profile.linked_in %} {% endif %} {% if profile.location %} {% endif %}
{% trans "Name" %}: {{ profile.firstname }} {{ profile.surname }}
{% trans "Native language" %}: {{ profile.native_language }}
{% trans "Blog/Site" %}: {{ profile.blog }}
{{ profile.twitter }}
{% trans "LinkedIn" %}: {{ profile.linked_in }}
{% trans "Location" %}: {{ profile.location }} - {{ profile.get_country_display }}
{% with profile.user as user %} {% with profile.user.team_coordinators.all as teams %} {% if teams %} {% autopaginate teams 20 %}

{% blocktrans count teams|length as counter %}Coordinator of the following team:{% plural %}Coordinator of the following teams:{% endblocktrans %}

{% endif %} {% endwith %} {% with profile.user.team_members.all as teams %} {% if teams %} {% autopaginate teams 20 %}

{% blocktrans count teams|length as counter %}Member of the following team:{% plural %}Members of the following teams:{% endblocktrans %}

{% endif %} {% endwith %} {% endwith %}
{% endblock %}