{% 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 %}
{{ forloop.counter0|get_index:page.start_index }}
{{ user.total }} {{ user.badges }} {% trans 'badges' %}{{ user.badges }}
{{ user.first_name }} {{ user.last_name }}
{% endfor %} {% include "oppia/includes/page_navigator.html" %} {% endif %} {% endblock %}