From 1470f1658835685eda709a98146df255c0d7c04b Mon Sep 17 00:00:00 2001 From: ariannedee Date: Mon, 31 Aug 2020 13:21:11 -0700 Subject: [PATCH] Questions will always exist now --- .../partials/review_user_responses.html | 76 +++++++++---------- 1 file changed, 34 insertions(+), 42 deletions(-) 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' %} - - - - - - - - {% format_children source=questions %} -
QuestionResponse
- {% else %} - - - - - - - - - {% 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 %} - - - - - {% endfor %} - {% endif %} - -
QuestionResponse
{{question.question__name}}{% reformat_value source=question %}
- {% endif %} +{% if step == 'your_children' %} + + + + + + + + {% format_children source=questions %} +
QuestionResponse
{% else %} - +
+ - + + -
No answered questionsQuestionResponse
+ + + {% 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