From 812ad6975cdad2020c09e06c369aad14032b3cf7 Mon Sep 17 00:00:00 2001 From: Mike Olund Date: Tue, 21 Mar 2017 16:39:16 -0700 Subject: [PATCH] DIV-168 - Skip prequalification step 5 if "Living together in a marriage like relationship" is selected in Step 1 --- .../apps/core/templates/prequalification/step_04.html | 8 +++++++- .../apps/core/templates/prequalification/step_06.html | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/edivorce/apps/core/templates/prequalification/step_04.html b/edivorce/apps/core/templates/prequalification/step_04.html index bd7798d9..7326ba58 100644 --- a/edivorce/apps/core/templates/prequalification/step_04.html +++ b/edivorce/apps/core/templates/prequalification/step_04.html @@ -77,7 +77,13 @@ {% block formbuttons %}
   Back - Next    + + {% if married_marriage_like == "Living together in a marriage like relationship" %} + Next    + {% else %} + Next    + {% endif %} +
{% endblock %} diff --git a/edivorce/apps/core/templates/prequalification/step_06.html b/edivorce/apps/core/templates/prequalification/step_06.html index 37ee3363..8df5c648 100644 --- a/edivorce/apps/core/templates/prequalification/step_06.html +++ b/edivorce/apps/core/templates/prequalification/step_06.html @@ -117,7 +117,13 @@ {% block formbuttons %}
-    Back + + {% if married_marriage_like == "Living together in a marriage like relationship" %} +    Back + {% else %} +    Back + {% endif %} + Next   
{% endblock %}