{% extends "user_profile_base.html" %} {% load i18n baseurl profile_tags %} {% block title %} {{ profile.user }} | {% trans "Users" %} | {{ settings.TITLE }} {% endblock %} {% block body_id %}dashboard{% endblock %} {% block breadcrumbs %}
  • {% trans "Users" %}
  • {{ profile.user }}
  • {% endblock %} {% block header_tabs_block %} {% if user == profile.user %} {{ block.super }} {% endif %} {% endblock %} {% block content %}

    {% trans "Contributions" %}

    {{ profile.user.username }}
    {% with contributions=profile.contributions %} {% if contributions %} {% for language, tp_user_stats in contributions %}

    {{ language.fullname }}

    {% for tp, stats in tp_user_stats %} {% for stat_item in stats %} {% if stat_item.count != 0 %} {% else %} {% endif %} {% endfor %} {% endfor %}
    {% trans "Project" %} {% trans "Suggestions Pending" %} {% trans "Accepted" %} {% trans "Rejected" %} {% trans "Submissions" %} {% trans "Overwritten" %}
    {{ tp.project }}{{ stat_item.count }}
    {% endfor %} {% else %}

    {% trans "This user doesn't have any contributions yet." %}

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