{% for type in ('nominated', 'pending'): %}
{{ _('Current waiting times:') }}
{% for (d, duration) in durations: %}
{% set total = progress[d][type] %}
{% endfor %}
{% endfor %}
{% if action_allowed('Addons', 'ReviewUnlisted') %}
{% for type in ('nominated', 'pending'): %}
{{ _('Current waiting times:') }}
{% for (d, duration) in durations: %}
{% set total = unlisted_progress[d][type] %}
{% endfor %}
{% endfor %}
{% endif %}
{% for row in reviews_total: %}
{{ row['user__display_name'] }} |
{{ row['approval_count']|numberfmt }} |
{% endfor %}
{% if reviews_total_position > reviews_max_display %}
{{ _("You're #{0} with {1} reviews")|f(reviews_total_position, reviews_total_count) }}
{% endif %}
{% for row in reviews_monthly: %}
{{ row['user__display_name'] }} |
{{ row['approval_count']|numberfmt }} |
{% endfor %}
{% if reviews_monthly_position > reviews_max_display %}
{{ _("You're #{0} with {1} reviews")|f(reviews_monthly_position, reviews_monthly_count) }}
{% endif %}
{% for item in eventlog %}
{{ item.to_string('editor') }}
{% if item.details %}
{{ _('More details.') }}
{% endif %}
{% with ago=item.created|timesince, iso=item.created|isotime,
pretty=item.created|babel_datetime %}
{% endwith %}
{% endfor %}
{% endblock %}