Spaces:
Runtime error
Runtime error
File size: 1,587 Bytes
d6047f1 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Scorecard</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Professional Scorecard</h1>
<nav>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/live_scoring">Live Scoring</a></li>
<li><a href="/leaderboards">Leaderboards</a></li>
<li><a href="/tournament">Organize Tournament</a></li>
<li><a href="/lookup">Lookup</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Player Performance</h2>
<table>
<thead>
<tr>
<th>Player</th>
<th>Runs</th>
<th>Balls</th>
<th>Wickets</th>
</tr>
</thead>
<tbody>
{% for player in player_scores %}
<tr>
<td>{{ player['player'] }}</td>
<td>{{ player['runs'] }}</td>
<td>{{ player['balls'] }}</td>
<td>{{ player['wickets'] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</section>
</main>
<footer>
<p>© 2025 Cricket Tournament. All rights reserved.</p>
</footer>
</body>
</html>
|