Top scorers column rearranged

This commit is contained in:
Lucas Patenaude
2024-04-14 17:39:40 -06:00
parent f60bbe00a6
commit b6f4b3128c

View File

@@ -61,21 +61,21 @@
<table>
<thead>
<tr>
<th>Goals</th>
<th></th>
<th>Name</th>
<th>Club</th>
<th>GP</th>
<th>Goals</th>
<th>GP</th>
</tr>
</thead>
<tbody>
{{#each topScorers.scorers}}
<tr>
<td id="goals-column">{{goals}}</td>
<td><img src="{{team.team_crest}}" alt="{{table.team_name}} Crest" id="table-logo"></td>
<td>{{player.player_name}}</td>
<td>{{team.team_name}}</td>
<td>{{games_played}}</td>
<td id="goals-column">{{goals}}</td>
</tr>
{{/each}}
</tbody>