27 lines
747 B
HTML
27 lines
747 B
HTML
|
{% 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 %}
|