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

22 lines
365 B
HTML

{% extends "base.html" %}
{% block title %}Players{% endblock %}
{% block head %}
{{ super() }}
{% endblock %}
{% block content %}
<h1>Players</h1>
<table>
<tr>
<th>Name</th>
</tr>
{% for player in players %}
<tr>
<td><a href="/player/{{ player.id }}">{{ player.name }}</a></td>
</tr>
{% endfor %}
</table>
{% endblock %}