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

{{ team.name }}

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

{{ error }}

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

Scoreboard has been frozen.

{% endif %}

{%if place %} {{ place }} place {% endif %}

{%if score %} {{ score }} points {% endif %}



{% if awards %}

Awards

{% for award in awards %} {% set count= awards|length - loop.index %} {% set rem = awards|length % 4 %} {% if count < rem %}
{% else %}
{% endif %}

{{ award.name }}

{% if award.category %}

{{ award.category }}

{% endif %}

{{ award.description }}

{{ award.value }}

{% endfor %}

{% endif %}

Solves

{% for solve in solves %} {% endfor %}
Challenge Value Time
{{ solve.chal.name }} {{ solve.chal.value }}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}