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> <table>
<thead> <thead>
<tr> <tr>
<th>Goals</th>
<th></th> <th></th>
<th>Name</th> <th>Name</th>
<th>Club</th> <th>Club</th>
<th>GP</th> <th>GP</th>
<th>Goals</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
{{#each topScorers.scorers}} {{#each topScorers.scorers}}
<tr> <tr>
<td id="goals-column">{{goals}}</td>
<td><img src="{{team.team_crest}}" alt="{{table.team_name}} Crest" id="table-logo"></td> <td><img src="{{team.team_crest}}" alt="{{table.team_name}} Crest" id="table-logo"></td>
<td>{{player.player_name}}</td> <td>{{player.player_name}}</td>
<td>{{team.team_name}}</td> <td>{{team.team_name}}</td>
<td>{{games_played}}</td> <td>{{games_played}}</td>
<td id="goals-column">{{goals}}</td>
</tr> </tr>
{{/each}} {{/each}}
</tbody> </tbody>