Table data implemented

This commit is contained in:
Lucas Patenaude
2024-04-13 18:40:46 -06:00
parent 8746bf6e20
commit 14a19ccdf7
4 changed files with 21 additions and 3 deletions

View File

@@ -19,6 +19,12 @@
<th>#</th>
<th></th>
<th>Club</th>
<th>GP</th>
<th>W</th>
<th>L</th>
<th>D</th>
<th>GD</th>
<th>Pts</th>
</tr>
</thead>
<tbody>
@@ -27,6 +33,12 @@
<td>{{table.league_position}}</td>
<td><img src="{{table.team_crest}}" alt="{{table.team_name}} Crest" id="table-logo"></td>
<td>{{table.team_name}}</td>
<td>{{games_played}}</td>
<td>{{wins}}</td>
<td>{{losses}}</td>
<td>{{draws}}</td>
<td>{{goal_difference}}</td>
<td>{{points}}</td>
</tr>
{{/each}}
</tbody>