Files
TijdVoorDeTest/templates/quiz/question.twig
Marijn Doeve f7b4b98da4
Some checks failed
CI / Tests (push) Failing after 10m32s
CI / Docker Lint (push) Successful in 9s
Refactor YAML and Twig files for consistent indentation and formatting
2025-03-05 22:47:59 +01:00

17 lines
531 B
Twig

{% extends 'quiz/base.html.twig' %}
{% block body %}
{{ question.question }}<br/>
<form method="post">
{% 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 %}