{% extends "base.html" %} {% load richtext %} {% block title %}Practice Question{% endblock %} {% block content %} ← Back to course

Practice Question

{{ question.text|richtext }}
{% csrf_token %} {% for choice in question.choices.all %} {% endfor %}
{% if attempt %}
{% if attempt.is_correct %}

✓ Correct!

{% else %}

✗ Not quite

{% endif %}

Explanation

{{ attempt.ai_feedback|exam_marks }}
{% endif %} {% endblock %}