
At this point it _should_ be just about usable for folks to poke-around in, though ugly as sin.
26 lines
440 B
HTML
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 %}
|