{% 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 %}