Files
TijdVoorDeTest/templates/quiz/question.twig
2025-04-21 14:09:02 +02:00

18 lines
611 B
Twig

{% extends 'quiz/base.html.twig' %}
{% block body %}
{{ question.question }}<br/>
<form method="post">
<input type="hidden" name="token" value="{{ csrf_token('question') }}">
{% for answer in question.answers %}
<div>
<button class="btn btn-outline-success"
type="submit"
name="answer"
value="{{ answer.id }}">{{ answer.text }}</button>
</div>
{% else %}
Weirdly enough this question has no answers...
{% endfor %}
</form>
{% endblock body %}