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

25 lines
476 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Decks</title>
</head>
<body>
<h1>Decks</h1>
<table>
<tr>
<th>Deck Name</th>
<th>Owner</th>
</tr>
{% for deck in decks %}
<tr>
<td>
<a href="/deck/{{ deck.id }}">{{ deck.name }}</a>
</td>
<td>{{ deck.owner.name }}</td>
</tr>
{% endfor %}
</table>
</body>
</html>