diff --git a/edivorce/apps/core/templates/overview.html b/edivorce/apps/core/templates/overview.html index a1c96995..294e9b2a 100644 --- a/edivorce/apps/core/templates/overview.html +++ b/edivorce/apps/core/templates/overview.html @@ -41,7 +41,7 @@ Step 5
Your separation
{% include "partials/progress_icon.html" with step_status_string=step_status.your_separation with_status=True %} - {% if children_of_marriage == 'YES' or derived.has_children_of_marriage %} + {% if derived.has_children_of_marriage %} Step {% step_order step="children" %}
Your children
@@ -49,7 +49,7 @@
{% endif %} - {% if 'Spousal support' in which_orders.0.value|load_json %} + {% if derived.wants_spousal_support %} Step {% step_order step="support" %}
Spousal support
@@ -57,7 +57,7 @@
{% endif %} - {% if 'Division of property and debts' in which_orders.0.value|load_json %} + {% if derived.wants_property_division %} Step {% step_order step="property" %}
Property and debt
@@ -65,7 +65,7 @@
{% endif %} - {% if 'Other orders' in which_orders.0.value|load_json %} + {% if derived.wants_other_orders %} Step {% step_order step="other_orders" %}
Other orders
diff --git a/edivorce/apps/core/templates/partials/progress.html b/edivorce/apps/core/templates/partials/progress.html index b1c38b91..510c34b6 100644 --- a/edivorce/apps/core/templates/partials/progress.html +++ b/edivorce/apps/core/templates/partials/progress.html @@ -34,7 +34,7 @@ {% include "partials/progress_icon.html" with step_status_string=step_status.your_separation%}
- {% if children_of_marriage == 'YES' or derived.has_children_of_marriage %} + {% if derived.has_children_of_marriage %}