{% extends 'base.html.twig' %} {% block body %}

{{ challenge|replace({'.yaml': '', '_': ' '})|capitalize }}

{% for question in questions %}

{{ loop.index }}. {{ question.question }}

{% for questionanswer in question.answers %}
{% if answers[question.uuid] is defined %} {% if questionanswer.value in answers[question.uuid] and questionanswer.correct == true %} {{ questionanswer.value }} {% elseif questionanswer.value in answers[question.uuid] and questionanswer.correct == false %} {{ questionanswer.value }} {% else %} {{ questionanswer.value }} {% endif %} {% else %} {{ questionanswer.value }} {% endif %}
{% endfor %}
{% endfor %}
{% endblock %}