23 lines
685 B
HTML
23 lines
685 B
HTML
{% extends "layout.html" %}
|
|
{% block content %}
|
|
<h1>24 heures</h1>
|
|
<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') }}">« retour à l'accueil</a>
|
|
</p>
|
|
{% endblock %}
|