mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 12:44:20 +01:00
17 lines
531 B
Twig
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 %}
|