From db77795ba4515da5ab7bb4e6c8fa94157c52b7c4 Mon Sep 17 00:00:00 2001 From: Benard Ebinu Date: Wed, 7 Feb 2018 15:57:52 -0800 Subject: [PATCH] DIV-767: Hide fact sheet A if there are no special or extraordinary expenses --- edivorce/apps/core/templates/question/06_children_facts.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/edivorce/apps/core/templates/question/06_children_facts.html b/edivorce/apps/core/templates/question/06_children_facts.html index ec808a8b..d4501693 100644 --- a/edivorce/apps/core/templates/question/06_children_facts.html +++ b/edivorce/apps/core/templates/question/06_children_facts.html @@ -3,6 +3,7 @@ {% load format_utils %} {% load step_order %} {% load format_utils %} +{% load load_json %} {% block title %}{{ block.super }}: Your Children {% endblock %} @@ -14,7 +15,8 @@ {{ claimant_children }} -{% if special_extraordinary_expenses != 'None' %} + +{% if 'None' not in special_extraordinary_expenses|load_json %}

Special or Extraordinary Expenses (Fact Sheet A)