musik/game/templates/game/musikgame_answer.html

27 lines
747 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
<h2>Mes réponses</h2>
<form method="post">
{% csrf_token %}
<table>
<thead>
<tr>
<th>
<i class="ri-mv-fill" alt="Musique"></i>
</th>
<th>Réponse</th>
</tr>
</thead>
<tbody>
{% for field in form %}
<tr>
<td>{{ field.label }}</td>
<td>{{ field }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<button type="submit">Valider mes réponses</button>
</form>
{% endblock content %}