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

21 lines
400 B
HTML

{% extends "base.html" %}
{% block title %}Player - {{ player.name }}{% endblock %}
{% block head %}
{{ super() }}
{% endblock %}
{% block content %}
<h2>This is the page for player {{ player.name }} who has id {{ player.id }}</h2>
{% if decks %}
<h2>Decks</h2>
<ul>
{% for deck in decks %}
<li><a href="/deck/{{ deck.id }}">{{ deck.name }}</a></li>
{% endfor %}
</ul>
{% endif %}
{% endblock %}