{% extends 'base.jinja' %} {% block title %}Formula 10 - Leaderboard{% endblock title %} {% set active_page = "/graphs" %} {% block body %}
Leaderboard
Points only include race picks
{% for user in points.users_sorted_by_points() %} {% endfor %}
Place User Points Total picks Correct picks Points per pick
{{ loop.index }} {{ user.name }} {{ points.total_points_by(user.name) }} {{ points.picks_count(user.name) }} {{ points.picks_with_points_count(user.name) }} {{ "%0.2f" % points.points_per_pick(user.name) }}
{#
#} {#
#} {#
History
#} {# Line chart of point history with a line per user #} {#
#} {#
#} {#
#} {#
#} {#
Statistics
#} {# Various statistics: Driver voted most for DNF #} {#
#} {#
#} {% endblock body %}