diff --git a/edivorce/apps/core/templates/partials/review_user_responses.html b/edivorce/apps/core/templates/partials/review_user_responses.html
index 9e870944..d9529756 100644
--- a/edivorce/apps/core/templates/partials/review_user_responses.html
+++ b/edivorce/apps/core/templates/partials/review_user_responses.html
@@ -1,47 +1,39 @@
{% load summary_format %}
-{% if questions %}
- {% if step == 'your_children' %}
-
-
-
- | Question |
- Response |
-
-
- {% format_children source=questions %}
-
- {% else %}
-
-
-
- | Question |
- Response |
-
-
-
- {% if step == 'prequalification' %}
- {% prequal_tag source=questions %}
- {% elif step == 'your_information' or step == 'your_spouse' %}
- {% personal_info_tag source=questions %}
- {% elif step == 'your_marriage' %}
- {% marriage_tag source=questions %}
- {% elif step == 'other_questions' %}
- {% combine_address source=questions %}
- {% else %}
- {% for question in questions %}
-
- | {{question.question__name}} |
- {% reformat_value source=question %} |
-
- {% endfor %}
- {% endif %}
-
-
- {% endif %}
+{% if step == 'your_children' %}
+
+
+
+ | Question |
+ Response |
+
+
+ {% format_children source=questions %}
+
{% else %}
-
+
+
- | No answered questions |
+ Question |
+ Response |
-
+
+
+ {% if step == 'prequalification' %}
+ {% prequal_tag source=questions %}
+ {% elif step == 'your_information' or step == 'your_spouse' %}
+ {% personal_info_tag source=questions %}
+ {% elif step == 'your_marriage' %}
+ {% marriage_tag source=questions %}
+ {% elif step == 'other_questions' %}
+ {% combine_address source=questions %}
+ {% else %}
+ {% for question in questions %}
+
+ | {{question.question__name}} |
+ {% reformat_value source=question %} |
+
+ {% endfor %}
+ {% endif %}
+
+
{% endif %}
\ No newline at end of file