{% extends "base.html" %} {% load i18n %} {% load display_functions %} {% block content %}

{% trans 'page_title_leaderboard' %}

{% if page.object_list.count > 0 %} {% include "oppia/includes/page_navigator.html" %}
{% for user in page.object_list %} {% endfor %}
# {% trans 'User' %} {% trans 'Points' %} {% trans 'Badges' %}
{{ forloop.counter0|get_index:page.start_index }} {% if OPPIA_SHOW_GRAVATARS %} {{ user|gravatar:24 }} {% endif %} {{ user.first_name }} {{ user.last_name }} {{ user.total }} {% if user.badges > 0 %} {{ user.badges }} {% trans 'badges' %} x {{ user.badges }} {% endif %}
{% include "oppia/includes/page_navigator.html" %} {% endif %} {% endblock %}