cricket_app / templates /scorecard.html
dschandra's picture
Create scorecard.html
d6047f1 verified
<!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>&copy; 2025 Cricket Tournament. All rights reserved.</p>
</footer>
</body>
</html>