{% extends "userena/base_userena.html" %} {% load i18n %} {% load txcommontags %} {% load pagination_tags %} {% block title %}{{ profile.user }}'s public profile{% endblock %} {% block robots %}noindex,nofollow{% endblock %} {% block extrajs %} {% endblock %} {% block content_sec %}

{% trans "Subscribe to this feed" %} 

{% endblock %} {% block extra_head %} {% 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 content_main %}
{{ 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 %}
{% csrf_token %}
{% endifnotequal %} {% endif %}
{% if profile.user.get_full_name %} {% endif %} {% with profile.languages.all as all_languages %} {% if all_languages %} {% endif %} {% endwith %} {% if profile.blog %} {% endif %} {% if profile.twitter %} {% endif %} {% if profile.linked_in %} {% endif %} {% if profile.location %} {% endif %}
{% trans "Name" %}: {{ profile.user.get_full_name }}
{% trans "Languages" %}: {% for language in all_languages %} {{ language.name }}{% if not forloop.last %}, {% endif %} {% endfor %}
{% trans "Blog/Site" %}: {{ profile.blog }}
{{ profile.twitter }}
{% trans "LinkedIn" %}: {{ profile.linked_in }}
{% trans "Location" %}: {{ profile.location }}
{% with profile.user as user %} {% with profile.user.projects_maintaining.public as projects %} {% if projects %}

{% blocktrans count projects|length as counter %}Maintainer of the following project{% plural %}Member of the following projects{% endblocktrans %}

{% endif %} {% endwith %} {% with profile.user.projects_maintaining.public as projects %} {% if projects %}

{% blocktrans count projects|length as counter %}Maintainer of the following project{% plural %}Member of the following projects{% endblocktrans %}

{% endif %} {% endwith %} {% with profile.user.team_coordinators.public 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.public as teams %} {% if teams %} {% autopaginate teams 20 %}

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

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