edh-elo/app/templates/player_detail.html
2024-01-31 19:48:58 -08:00

11 lines
255 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Player - {{ player.name }}</title>
</head>
<body>
<h1>Hello World!</h1>
<h2>This is the page for player {{ player.name }} who has id {{ player.id }}</h2>
</body>
</html>