This commit is contained in:
2019-01-02 04:30:59 +01:00
commit 0007f25cf6
6 changed files with 128 additions and 0 deletions

16
templates/name_show.html Normal file
View File

@@ -0,0 +1,16 @@
{% extends "main.html" %}
{% block title %}Play!{% endblock %}
{% block content %}
<h1>Play!</h1>
<h2>You are: {{ current_player }}</h2>
<p>
<table>
{% for player,name in other_players.items() %}
<tr><td>{{ player }}</td><td>{{ name }}</td></tr>
{% endfor %}
</table>
</p>
{% endblock %}