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

Scoreboard

{% include "components/errors.html" %}
{% cache 60, CacheKeys.PUBLIC_SCOREBOARD_TABLE %} {% if standings %}
{% for standing in standings %} {% endfor %}
Place {{ get_mode_as_word(capitalize=True) }} Score
{{ loop.index }} {{ standing.name | truncate(50) }} {% if standing.oauth_id %} {% if Configs.user_mode == 'teams' %} Official {% elif Configs.user_mode == 'users' %} Official {% endif %} {% endif %} {{ standing.score }}
{% endif %} {% endcache %}
{% endblock %} {% block scripts %} {% endblock %} {% block entrypoint %} {% endblock %}