|
|
|
|
@ -2,7 +2,7 @@
|
|
|
|
|
{% block title %}Разбор попытки{% endblock %} |
|
|
|
|
|
|
|
|
|
{% block content %} |
|
|
|
|
<div class="test-detail-page"> |
|
|
|
|
<div class="test-detail-page attempt-review-page"> |
|
|
|
|
<p class="link-back"><a href="/tests">← к списку тестов</a></p> |
|
|
|
|
<h1 class="font-headline" style="font-size:1.35rem;margin-top:0;">Разбор: {{ review.testTitle }}</h1> |
|
|
|
|
<p> |
|
|
|
|
@ -22,10 +22,12 @@
|
|
|
|
|
<span>{{ 'Верно' if q.isUserCorrect else 'Ошибка' }}</span> |
|
|
|
|
</div> |
|
|
|
|
<p style="margin-top:.25rem;"><strong>{{ loop.index }}.</strong> {{ q.text }}</p> |
|
|
|
|
<ul style="list-style:none;padding-left:0;margin:0;"> |
|
|
|
|
<ul class="attempt-review-options"> |
|
|
|
|
{% for o in q.options %} |
|
|
|
|
<li style="margin:.25rem 0;"> |
|
|
|
|
<span> |
|
|
|
|
<li class="attempt-review-option |
|
|
|
|
{% if o.isCorrect %}attempt-review-option--correct{% endif %} |
|
|
|
|
{% if o.selected and not o.isCorrect %}attempt-review-option--wrong{% endif %}"> |
|
|
|
|
<span class="attempt-review-option__text"> |
|
|
|
|
{% if o.selected %}☑{% else %}☐{% endif %} |
|
|
|
|
{{ o.text }} |
|
|
|
|
{% if o.isCorrect %}<strong> (правильный)</strong>{% endif %} |
|
|
|
|
|