{% extends 'user/base.html' %} {% load core humanize i18n profile_tags assets %} {% block body_id %}profile-page{% endblock %} {% block header_block %}{% endblock %} {% block content %}

{% if object.is_anonymous %} {% trans 'Anonymous User' %} {% else %} {{ object.display_name }} {% endif %}

{% if user_is_manager %}

{{ object.email }}

{% endif %}
{% if not object.is_meta %}

{% trans 'Score:' %}

{% if user == object and object.public_score > 0 %} {{ object.public_score|intcomma }} {% else %} {{ object.public_score|intcomma }} {% endif %}

{% with pos=object.top_language.0 lang=object.top_language.1 %} {% if pos == -1 %} {% trans 'No contributions in the last 30 days' %} {% else %} {% if user == object %} {% blocktrans with lang_name=lang.name trimmed %} #{{ pos }} contributor in {{ lang_name }} in the last 30 days {% endblocktrans %} {% else %} {% blocktrans with lang_name=lang.name url=lang.get_absolute_url trimmed %} #{{ pos }} contributor in {{ lang_name }} in the last 30 days {% endblocktrans %} {% endif %} {% endif %} {% endwith %}

{% with last_event=object.last_event %} {% if last_event %}
{% trans 'Latest activity:' %}
{% endif %} {% endwith %}

{% trans 'Statistics' %}

{% if object.bio or object.has_contact_details or user == object %}
{% if object.has_contact_details %} {% endif %} {% if object.bio %}
“{{ object.bio }}”
{% endif %} {% if user == object %} {% if not object.has_contact_details or not object.bio %}
{% trans 'Show others who you are, tell about yourself
and make your public profile look gorgeous!' %}
{% endif %} {% endif %}
{% endif %} {% else %}
{% if object.is_anonymous %} {% trans 'Some translations are provided by anonymous volunteers. These are registered under this special meta-account.' %} {% elif object.is_system %} {% trans 'Some translations are imported from external files. These are registered under this special meta-account.' %} {% else %} {{ object.bio }} {% endif%}
{% endif %}
{% endblock %} {% block scripts_extra %} {{ block.super }} {% assets 'js_user_app' %} {% endassets %} {% endblock %}