20 lines
320 B
HTML
20 lines
320 B
HTML
{% 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 %}
|