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 %}
+
Feedback: {{ question.b_feedback|safe }}
+ {% endif %}
@@ -35,6 +38,9 @@
{{ form.c }}
+ {% if exam.publish_results and question.c_feedback %}
+ Feedback: {{ question.c_feedback|safe }}
+ {% endif %}
@@ -43,6 +49,9 @@
{{ form.d }}
+ {% if exam.publish_results and question.d_feedback %}
+ Feedback: {{ question.d_feedback|safe }}
+ {% endif %}
@@ -51,6 +60,9 @@
{{ form.e }}
+ {% if exam.publish_results and question.e_feedback %}
+ Feedback: {{ question.e_feedback|safe }}
+ {% endif %}