mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 04:44:19 +01:00
10 lines
291 B
Twig
10 lines
291 B
Twig
{% extends "quiz/base.html.twig" %}
|
|
{% block body %}
|
|
Candiadte: {{ candidate.name }}<br/>
|
|
|
|
{{ question.question }}<br/>
|
|
{% for answer in question.answers %}
|
|
<input type="radio" name="answer" value="{{ answer.id }}"> {{ answer.text }}
|
|
{% endfor %}
|
|
{% endblock body %}
|