Files
ScoreSpot/ProjectSourceCode/src/views/pages/league-page.hbs

77 lines
2.8 KiB
Handlebars
Raw Normal View History

2024-04-13 15:58:02 -06:00
<div class="container" id="league-page-body">
<!-- Container for all league information (logo, name, country, etc. ) <- top 100px -->
<div class="container" id="league-information-container">
2024-04-13 17:11:28 -06:00
<img id="league-logo" src="{{league.competition.league_emblem}}" alt="{{league.competition.league_name}} Emblem">
<h1 id="league-title">{{league.competition.league_name}}</h2>
2024-04-13 18:45:55 -06:00
<img id="league-flag" src="{{league.area.league_flag}}" alt="{{league.competition.league_name}} Flag">
2024-04-13 15:58:02 -06:00
</div>
<!-- Container to display all stats for league <- bottom rest of the container -->
<div class="container" id="league-stats-container">
<!-- Container to display league table <- split 50% -->
<div class="container" id="league-table-container">
2024-04-13 17:46:16 -06:00
<h2>Table</h2>
2024-04-13 17:11:28 -06:00
<table id="standings-table">
<thead>
<tr>
<th>#</th>
<th></th>
<th>Club</th>
2024-04-13 18:40:46 -06:00
<th>GP</th>
<th>W</th>
<th>L</th>
<th>D</th>
<th>GD</th>
<th>Pts</th>
2024-04-13 17:11:28 -06:00
</tr>
</thead>
<tbody>
{{#each league.standings}}
<tr>
<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>
2024-04-13 18:40:46 -06:00
<td>{{games_played}}</td>
<td>{{wins}}</td>
<td>{{losses}}</td>
<td>{{draws}}</td>
<td>{{goal_difference}}</td>
<td>{{points}}</td>
2024-04-13 17:11:28 -06:00
</tr>
{{/each}}
</tbody>
</table>
2024-04-13 15:58:02 -06:00
</div>
<!-- Container to display top scorers for league <- Split 50% -->
<div class="container" id="top-scorers-container">
<h2>Top Scorers</h2>
<table>
<thead>
<tr>
<th>Player Name</th>
<th>Team Name</th>
<th>Games Played</th>
<th>Goals</th>
</tr>
</thead>
<tbody>
{{#each topScorers.scorers}}
<tr>
<td>{{player.player_name}}</td>
<td>{{team.team_name}}</td>
<td>{{games_played}}</td>
<td>{{goals}}</td>
</tr>
{{/each}}
</tbody>
</table>
2024-04-13 15:58:02 -06:00
</div>
</div>
2024-04-13 17:11:28 -06:00
</div>