{% extends 'quiz/base.html' %} {% load quiz_extras %} {% block content %} {% include 'quiz/_header.html' with active='taken' %} {{ quiz.subject.get_html_badge }}
{{percentage}}%

{% for question in questions %}
{{forloop.counter}}. {{question.text}}
{% for opt in question.answers.all %} {% marked_answer user opt as opt_marked %} {% endfor %}
YoursCorrect
{{opt.text}}

{% endfor %} {% endblock %} {% block js %} {% endblock %}