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

View File

@@ -0,0 +1,19 @@
{% extends "main.html" %}
{% block title %}Player select{% endblock %}
{% block content %}
<h1>Player select</h1>
<p>
Please select your player:
<br/>
{% for player in players %}
<a href=./edit/{{ player }}>{{ player }}</a>
{% endfor %}
</p>
<p>
You can share <a href={{ gameurl }}>this</a> link
</p>
{% endblock %}