Browse Source

DIV-767: Hide fact sheet A if there are no special or extraordinary expenses

pull/160/head
Benard Ebinu 7 years ago
parent
commit
db77795ba4
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      edivorce/apps/core/templates/question/06_children_facts.html

+ 3
- 1
edivorce/apps/core/templates/question/06_children_facts.html View File

@ -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 }}
</div>
{% if special_extraordinary_expenses != 'None' %}
{% if 'None' not in special_extraordinary_expenses|load_json %}
<div id="fact_sheet_a" class="question-well">
<h1>Special or Extraordinary Expenses (Fact Sheet A)</h1>
<table class="table table-bordered">


Loading…
Cancel
Save