From 89e7e49e318489a7e585860a5958c675b00af0ef Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 19 Jan 2026 12:11:24 +0000 Subject: [PATCH] Add feedback display for answer options based on exam settings --- .../physics/partials/exam_take_fragment.html | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/physics/templates/physics/partials/exam_take_fragment.html b/physics/templates/physics/partials/exam_take_fragment.html index dc8626b3..3d0d77ac 100644 --- a/physics/templates/physics/partials/exam_take_fragment.html +++ b/physics/templates/physics/partials/exam_take_fragment.html @@ -27,6 +27,9 @@ {{ form.b }} + {% if exam.publish_results and question.b_feedback %} +
+ {% endif %}
  • @@ -35,6 +38,9 @@ {{ form.c }} + {% if exam.publish_results and question.c_feedback %} +
    + {% endif %}
  • @@ -43,6 +49,9 @@ {{ form.d }} + {% if exam.publish_results and question.d_feedback %} +
    + {% endif %}
  • @@ -51,6 +60,9 @@ {{ form.e }} + {% if exam.publish_results and question.e_feedback %} +
    + {% endif %}