21 lines
421 B
HTML
21 lines
421 B
HTML
{% extends "main.html" %}
|
|
{% block title %}Play!{% endblock %}
|
|
{% block content %}
|
|
|
|
<h1>Play!</h1>
|
|
<div class=current_player_indicator>You are: {{ current_player }}</div>
|
|
|
|
<p>
|
|
<table>
|
|
{% for player,name in other_players.items() %}
|
|
<tr><td>{{ player }}</td><td>{{ name }}</td></tr>
|
|
{% endfor %}
|
|
</table>
|
|
</p>
|
|
|
|
<p>
|
|
<a href={{ edit_url }}>Edit name</a> <a href={{ url_for('create_game') }}>New game</a>
|
|
</p>
|
|
|
|
{% endblock %}
|