edh-elo/app/templates/games/detail.html
2024-02-05 21:24:42 -08:00

14 lines
343 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Game - {{ game.id }}</title>
</head>
<body>
<h2>This is the page for game with id {{ game.id }}, played on date {{ game.date }}</h2>
{% if deck.description %}
<p>The description of the game is: {{ game.description }}</p>
{% endif %}
</body>
</html>