Jack Jackson e4ea529fbe Cosmetic and final-basic functionality
At this point it _should_ be just about usable for folks to poke-around
in, though ugly as sin.
2024-06-09 09:45:56 -07:00

26 lines
440 B
HTML

{% extends "base.html" %}
{% block title %}Decks{% endblock %}
{% block head %}
{{ super() }}
{% endblock %}
{% block content %}
<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>
{% endblock %}