{% load static %}
{% if match.bracket_name %} {% endif %} {% if not match.ended %} {% endif %}
{% for team in match.teams %}
{% if team.id %} {% endif %}
{% for name in team.names %}
{% if name|length > 0 %} {{ name }} {% else %}   {% endif %}
{% endfor %}
{% if team.id and team.weight %}
{% endif %} {% if team.is_lucky_loser or team.walk_out == 1 %}
{% if match.should_show_lucky_loser_status and team.is_lucky_loser %}(LL){% endif %}
{% endif %}
{% if match.has_walk_out %} {% if team.is_walk_out %}WO{% endif %} {% elif match.should_show_scores %}
{% for score in team.scores %} {{ score.main }} {% if score.tiebreak %} {{ score.tiebreak }} {% endif %} {% endfor %}
{% elif not tournament.hide_weight and team.weight %} {{ team.weight }} {% endif %}
{% endfor %}