{% extends 'base.html' %} {% block content %}

{{ _('Top 10 Contributors Overall') }}

{% if top_users_overall %} {% for user in top_users_overall %} {% endfor %} {% else %}

Could not fetch results! Please try again.

{% endif %}
# {{ _('User') }} {{ _('Reviews') }} {{ _('Comments') }} {{ _('Votes') }} {{ _('Total Score') }}
{{ loop.index }} {{ user.display_name }} {{ user["review_count"] }} {{ user["comment_count"] }} {{ user["vote_count"] }} {{ user["score"] }}
{% endblock %}