You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
665 B

{% extends "layout.html" %}
{% block content %}
<h2>Trancher un joueur</h2>
<p>
Ta cible sera notifiée quelle que soit l'issue de ta tentative. Question
chance, c'est 50-50.
</p>
<form id="select" action="" method="post">
<select name="target_id">
<p><option value="none">(sélectionner un joueur)</option>
{% for player in players %}
<option value="{{ player.id }}">
{{ "%s %s" % (player.firstname, player.name) }}
</option></p>
{% endfor %}
</select>
<input type="submit" value="Tchak !" />
</form>
<p>
<a href="{{ url_for('home') }}">&laquo; retour à l'accueil</a>
</p>
{% endblock %}