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