{% extends "editors/base.html" %} {% set types = ('addons', 'themes', 'other') %} {% block breadcrumbs %} {{ editors_breadcrumbs(items=[(None, _('Performance'))]) }} {% endblock %} {% block content %}
{{ _('View statistics for user') }}
{% endif %}{{ _('Range') }} | {% if is_user: %} {{ _('Your Reviews') }} {% else: %} {{ _('By {user_name}')|f(user_name=current_user.display_name) }} {% endif %} | {{ _('Total Reviews') }} | {#{{ _('Team Average') }} | #}{{ _('Active Contributors') }} |
---|---|---|---|---|
{{ _('This Month') }} | {{ performance_month['usercount'] }} | {{ performance_month['teamcount'] }} | {{ performance_month['teamamt'] }} | |
{{ _('This Year') }} | {{ performance_year['usercount'] }} | {{ performance_year['teamcount'] }} | {{ performance_year['teamamt'] }} |
{{ _('No review points awarded yet.') }}
{% else %}{{ _('Add-ons') }} | {{ _('Themes') }} | {# L10n: Review points sources other than add-ons and themes. #}{{ _('Other') }} | {{ _('Total') }} | |
---|---|---|---|---|
{{ _('Month') }} | {% for type in types %}{{ breakdown['month'][type]|numberfmt }} | {% endfor %}{{ breakdown['month'].values()|sum|numberfmt }} | ||
{{ _('Year') }} | {% for type in types %}{{ breakdown['year'][type]|numberfmt }} | {% endfor %}{{ breakdown['year'].values()|sum|numberfmt }} | ||
{{ _('All-Time') }} | {% for type in types %}{{ breakdown['total'][type]|numberfmt }} | {% endfor %}{{ breakdown['total'].values()|sum|numberfmt }} |