From 1040b97d9d6d39376a37649939725eda27c9bf0c Mon Sep 17 00:00:00 2001 From: Benard Ebinu Date: Thu, 22 Feb 2018 17:10:49 -0800 Subject: [PATCH] DIV-687: Adding break between in children's sub section --- edivorce/apps/core/templatetags/summary_format.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/edivorce/apps/core/templatetags/summary_format.py b/edivorce/apps/core/templatetags/summary_format.py index f2d2a957..2c490039 100644 --- a/edivorce/apps/core/templatetags/summary_format.py +++ b/edivorce/apps/core/templatetags/summary_format.py @@ -183,8 +183,6 @@ def format_children(context, source): tags.append(format_row('Relationship to yourself (claimant 1)', child['child_relationship_to_you'])) tags.append(format_row('Relationship to your spouse (claimant 2)', child['child_relationship_to_spouse'])) child_counter = child_counter + 1 - tags.append('') - tags.append('') else: value = item['value'] try: @@ -195,6 +193,8 @@ def format_children(context, source): tags.append(format_row(item['question__name'], process_list(value, q_id))) else: tags.append(format_row(item['question__name'], value)) + tags.append('') + tags.append('') tags.append('') return ''.join(tags)