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

Scoreboard

{% if errors %}
{% for error in errors %}

{{ error }}

{% endfor %}
{% else %} {% if score_frozen %}

Scoreboard has been frozen.

{% endif %}
{% if standings %}
{% for standing in standings %} {% endfor %}
Place Team Score
{{ loop.index }} {{ standing.name | truncate(50) }} {% if standing.oauth_id %} {% if get_config('user_mode') == 'teams' %} Official {% elif get_config('user_mode') == 'users' %} Official {% endif %} {% endif %} {{ standing.score }}
{% endif %} {% endif %}
{% endblock %} {% block scripts %} {% endblock %} {% block entrypoint %} {% endblock %}