|
|
|
|
@ -86,18 +86,20 @@ |
|
|
|
|
|
|
|
|
|
<div class="scontainer"> |
|
|
|
|
<div class="teams"> |
|
|
|
|
<h1>Classement<h1> |
|
|
|
|
<h1>Classement {{ tournament.name }} - {{ tournament.teams|length }} équipes <h1> |
|
|
|
|
<table> |
|
|
|
|
<tr> |
|
|
|
|
<th>Classement</th> |
|
|
|
|
<th>Nom</th> |
|
|
|
|
<th>Poids</th> |
|
|
|
|
<th>Points</th> |
|
|
|
|
</tr> |
|
|
|
|
{% for team in tournament.teamsByFinalRank %} |
|
|
|
|
<tr height='100%'> |
|
|
|
|
<td class="score">#{{ team.position_finale }}</td> |
|
|
|
|
<td class="name" width='60%'>{{ team.name|linebreaksbr }}</td> |
|
|
|
|
<td class="score">{{ team.rank }}</td> |
|
|
|
|
<td class="score">{{ team.date_label }}</td> |
|
|
|
|
</tr> |
|
|
|
|
{% endfor %} |
|
|
|
|
</table> |
|
|
|
|
|