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.
 
 
 
 
padelclub_backend/tournaments/templates/tournaments/team_row.html

16 lines
632 B

{% load static %}
<div class="table-row-3-colums-teams bottom-border">
<div class="table-cell table-cell-large semibold">
{% for name in team.names %}
<div>{{ name }}</div>
{% endfor %}
</div>
{% if tournament.hide_teams_weight %}
<div class="table-cell right horizontal-padding"></div>
{% else %}
<div class="table-cell right horizontal-padding">{{ team.weight }}</div>
{% endif %}
<div class="table-cell "><div class="mybox center">{{ team.stage }}</div></div>
</div>