{% extends "base.html" %} {% load url %} {% load static %} {% load to_range %} {% block title %}Leaderboard - {{ block.super }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block topbar2 %} {% include "evaluation/partials/phase_navbar.html" with leaderboard_nav=True %} {% endblock %} {% block content %}

{{ phase.title }} Leaderboard {{ request.GET.date }}

{% if "change_challenge" in challenge_perms %} {% include "evaluation/partials/phase_closed_warning.html" with phase=phase %}   Edit Phase Settings {% endif %} {% include "datatables/partials/datatable.html" with columns=columns %} {% if phase.result_display_choice == phase.BEST %}

Only the best published result for each participant is listed.

{% elif phase.result_display_choice == phase.MOST_RECENT %}

Only the most recent published result for each participant is listed.

{% else %} {% endif %} {% if "change_challenge" in challenge_perms %}

Export

{% for offset in object_list.count|to_range:limit %}

Evaluations ({{ offset|add:1 }} to {{ offset|add:limit }})

{% endfor %} {% endif %} {% endblock %} {% block script %} {{ block.super }} {{ allow_metrics_toggling|json_script:"allowMetricsToggling" }} {{ display_leaderboard_date_button|json_script:"displayLeaderboardDateButton" }} {% endblock %}