You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
3.0 KiB
74 lines
3.0 KiB
{% load static %}
|
|
|
|
<div class="cell medium-12 large-3 my-block">
|
|
<div class="bubble">
|
|
|
|
<div class="flex-row">
|
|
<label class="matchtitle">{{ match.title }}</label>
|
|
{% if not match.ended %}
|
|
<label class="right-label minor-info bold">{{ match.court }}</label>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div>
|
|
|
|
{% for team in match.teams %}
|
|
<div class="match-result {% cycle 'bottom-border' '' %}">
|
|
<div class="player">
|
|
{% if team.id %}
|
|
<a href="{% url 'team-details' tournament.id team.id %}" class="player-link"> <!-- Add this anchor tag -->
|
|
{% endif %}
|
|
{% for name in team.names %}
|
|
<div class="semibold {% if team.is_winner %}winner{% endif %}">
|
|
{% if name|length > 0 %}
|
|
{{ name }}
|
|
{% else %}
|
|
|
|
{% endif %}
|
|
</div>
|
|
{% endfor %}
|
|
{% if team.id %}
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% if match.should_show_scores %}
|
|
<div class="scores">
|
|
{% for score in team.scores %}
|
|
<span class="score ws {% if score.tiebreak %}w35px{% else %}w30px{% endif %}{% if team.is_winner %} winner{% endif %}">
|
|
{{ score.main }}
|
|
{% if score.tiebreak %}
|
|
<sup>{{ score.tiebreak }}</sup>
|
|
{% endif %}
|
|
</span>
|
|
{% endfor %}
|
|
</div>
|
|
{% elif match.has_walk_out %}
|
|
<span class="score ws w60px">
|
|
{% if team.walk_out %}WO{% endif %}
|
|
</span>
|
|
{% elif not tournament.hide_weight and team.weight %}
|
|
<span class="score ws numbers">{{ team.weight }}</span>
|
|
{% endif %}
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
<div class="flex-row top-margin">
|
|
<label class="left-label minor-info bold">
|
|
{% if match.show_time_indication %}
|
|
{{ match.time_indication }}
|
|
{% endif %}
|
|
</label>
|
|
<label class="right-label minor-info">
|
|
{% if not match.ended %}
|
|
{{ match.format }}
|
|
{% endif %}
|
|
</label>
|
|
<!-- <a href="" class="right-label">{{ match.court }}</a> -->
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|