{% extends "base.html" %} {% load i18n %} {% load humanize %} {% block breadcrumbs %}
  • {% trans "Users" %}
  • {{ page_profile.get_user_name }}
  • {% endblock %} {% block content %}
    {% trans

    {{ page_user }}

    @{{ page_user.username }} {% blocktrans with date=page_user.date_joined|date:"DATE_FORMAT" %}Joined on {{ date }}{% endblocktrans %}

    {% if page_profile.translated or page_profile.suggested or page_profile.uploaded %}

    {% if page_profile.translated %} {% blocktrans count cnt=page_profile.translated with count=page_profile.translated|intcomma %}{{ count }} translation{% plural %}{{ count }} translations{% endblocktrans %} {% endif %} {% if page_profile.suggested %} {% blocktrans count cnt=page_profile.suggested with count=page_profile.suggested|intcomma %}{{ count }} suggestion{% plural %}{{ count }} suggestions{% endblocktrans %} {% endif %} {% with pending_suggestions=page_user.suggestion_set.count %} {% if pending_suggestions %} {% blocktrans count cnt=pending_suggestions with count=pending_suggestions|intcomma %}{{ count }} pending suggestion{% plural %}{{ count }} pending suggestions{% endblocktrans %} {% endif %} {% endwith %} {% if page_profile.uploaded %} {% blocktrans count cnt=page_profile.uploaded with count=page_profile.uploaded|intcomma %}{{ count }} screenshot{% plural %}{{ count }} screenshots{% endblocktrans %} {% endif %} {% if page_profile.commented %} {% blocktrans count cnt=page_profile.commented with count=page_profile.commented|intcomma %}{{ count }} comment{% plural %}{{ count }} comments{% endblocktrans %} {% endif %}

    {% endif %} {% if user_languages %}

    {% for language in user_languages %} {{ language }} {% endfor %}

    {% endif %}
    {% include "list-projects.html" with projects=user_projects %}
    {% include "list-projects.html" with projects=owned_projects %}
    {% include "list-projects.html" with projects=watched_projects %}
    {% url 'yearly_activity' user=page_user.username as yearly_activity %} {% url 'monthly_activity' user=page_user.username as monthly_activity %} {% include "activity-tab.html" %}
    {% include "last-changes-content.html" %} {% trans "Browse all changes for user" %}
    {% endblock %}