From be444f63f181f8aeed246903dd522700d8a5aa15 Mon Sep 17 00:00:00 2001
From: ariannedee
* You have indicated that you have children of the marriage. This includes children under and over the age of 19. Their details + must be added below.
| - Add Child + Add Child{% if claimant_children_error %} + {% include 'partials/required.html' with hidden=True %}{% endif %} + |
Discuss the conditions, means, needs and other circumstances of the child, and the financial diff --git a/edivorce/apps/core/templates/question/06_children_facts.html b/edivorce/apps/core/templates/question/06_children_facts.html index ab6c80a7..3332f6c3 100644 --- a/edivorce/apps/core/templates/question/06_children_facts.html +++ b/edivorce/apps/core/templates/question/06_children_facts.html @@ -554,7 +554,7 @@
Since you have previously indicated that the payor's income is over $150,000 you will need to provide
diff --git a/edivorce/apps/core/templatetags/format_utils.py b/edivorce/apps/core/templatetags/format_utils.py
index 23809af4..432d310f 100644
--- a/edivorce/apps/core/templatetags/format_utils.py
+++ b/edivorce/apps/core/templatetags/format_utils.py
@@ -177,6 +177,12 @@ def lookup(obj, property):
return obj.get(property, '')
+@register.simple_tag(takes_context=True)
+def lookup_context(context, property):
+ """ Return the value of a dynamic property from context"""
+ return context.get(property, '')
+
+
@register.simple_tag(takes_context=True)
def agreed_child_support_amount(context, claimant_id, line_breaks=True):
"""Return the agree amount for the specific claimant fact sheet table."""
diff --git a/edivorce/apps/core/utils/derived.py b/edivorce/apps/core/utils/derived.py
index 6b0e57c9..f34ecac6 100644
--- a/edivorce/apps/core/utils/derived.py
+++ b/edivorce/apps/core/utils/derived.py
@@ -31,9 +31,10 @@ DERIVED_DATA = [
'show_fact_sheet_c',
'show_fact_sheet_d',
'show_fact_sheet_e',
- 'show_fact_sheet_f',
'show_fact_sheet_f_you',
'show_fact_sheet_f_spouse',
+ 'show_fact_sheet_f',
+ 'fact_sheet_f_error',
'has_fact_sheets',
'child_support_payor_b',
'child_support_payor_c',
@@ -180,19 +181,9 @@ def show_fact_sheet_e(responses, derived):
return responses.get('claiming_undue_hardship', '') == 'YES'
-def show_fact_sheet_f(responses, derived):
- """
- If one of the claimants earns over $150,000, Fact Sheet F is indicated.
- """
- return show_fact_sheet_f_you(responses, derived) or show_fact_sheet_f_spouse(responses, derived)
-
-
def show_fact_sheet_f_you(responses, derived):
"""
-
- :param responses:
- :param derived:
- :return:
+ If claimant 1 (you) is a payor and makes over $150,000/year, show fact sheet F for claimant 1
"""
payor = child_support_payor(responses, derived)
@@ -206,10 +197,7 @@ def show_fact_sheet_f_you(responses, derived):
def show_fact_sheet_f_spouse(responses, derived):
"""
-
- :param responses:
- :param derived:
- :return:
+ If claimant 2 (spouse) is a payor and makes over $150,000/year, show fact sheet F for claimant 2
"""
payor = child_support_payor(responses, derived)
@@ -221,6 +209,40 @@ def show_fact_sheet_f_spouse(responses, derived):
return (payor == 'Claimant 2' or payor == 'both Claimant 1 and Claimant 2') and annual > 150000
+def show_fact_sheet_f(responses, derived):
+ """
+ If one of the claimants earns over $150,000, Fact Sheet F is indicated.
+ """
+ return derived['show_fact_sheet_f_you'] or derived['show_fact_sheet_f_spouse']
+
+
+def fact_sheet_f_error(responses, derived):
+ """
+ Helper to see if there are any errors for missing required fields
+ """
+ fields_for_you = ['number_children_seeking_support_you',
+ 'child_support_amount_under_high_income_you',
+ 'percent_income_over_high_income_limit_you',
+ 'amount_income_over_high_income_limit_you',
+ 'agree_to_child_support_amount_you',
+ 'agreed_child_support_amount_you',
+ 'reason_child_support_amount_you',
+ ]
+ fields_for_spouse = ['number_children_seeking_support_spouse',
+ 'child_support_amount_under_high_income_spouse',
+ 'percent_income_over_high_income_limit_spouse',
+ 'amount_income_over_high_income_limit_spouse',
+ 'agree_to_child_support_amount_spouse',
+ 'agreed_child_support_amount_spouse',
+ 'reason_child_support_amount_spouse']
+ if show_fact_sheet_f_you(responses, derived):
+ if _any_question_errors(responses, fields_for_you):
+ return True
+ if show_fact_sheet_f_spouse(responses, derived):
+ if _any_question_errors(responses, fields_for_spouse):
+ return True
+
+
def has_fact_sheets(responses, derived):
""" Return whether or not the user is submitting fact sheets """
return any([derived['show_fact_sheet_b'], derived['show_fact_sheet_c'],
@@ -706,3 +728,11 @@ def sole_custody(responses, derived):
def missing_undue_hardship_details(responses, derived):
return conditional_logic.determine_missing_undue_hardship_reasons(responses)
+
+
+def _any_question_errors(responses, questions):
+ for field in questions:
+ error_field_name = f'{field}_error'
+ if responses.get(error_field_name):
+ return True
+ return False
diff --git a/edivorce/apps/core/utils/question_step_mapping.py b/edivorce/apps/core/utils/question_step_mapping.py
index d34bf108..2d7b2b7f 100644
--- a/edivorce/apps/core/utils/question_step_mapping.py
+++ b/edivorce/apps/core/utils/question_step_mapping.py
@@ -87,14 +87,22 @@ question_step_mapping = {
'order_monthly_child_support_amount',
'child_support_in_order_reason',
'child_support_payment_special_provisions',
- 'number_children_seeking_support',
- 'child_support_amount_under_high_income',
- 'percent_income_over_high_income_limit',
- 'amount_income_over_high_income_limit',
- 'total_guideline_amount',
- 'agree_to_child_support_amount',
- 'agreed_child_support_amount',
- 'reason_child_support_amount',
+ 'number_children_seeking_support_you',
+ 'child_support_amount_under_high_income_you',
+ 'percent_income_over_high_income_limit_you',
+ 'amount_income_over_high_income_limit_you',
+ 'total_guideline_amount_you',
+ 'agree_to_child_support_amount_you',
+ 'agreed_child_support_amount_you',
+ 'reason_child_support_amount_you',
+ 'number_children_seeking_support_spouse',
+ 'child_support_amount_under_high_income_spouse',
+ 'percent_income_over_high_income_limit_spouse',
+ 'amount_income_over_high_income_limit_spouse',
+ 'total_guideline_amount_spouse',
+ 'agree_to_child_support_amount_spouse',
+ 'agreed_child_support_amount_spouse',
+ 'reason_child_support_amount_spouse',
'have_separation_agreement',
'have_court_order',
'what_parenting_arrangements',
@@ -102,14 +110,6 @@ question_step_mapping = {
'order_respecting_arrangement',
'order_for_child_support',
'child_support_act',
- 'spouse_number_children_seeking_support',
- 'spouse_child_support_amount_under_high_income',
- 'spouse_percent_income_over_high_income_limit',
- 'spouse_amount_income_over_high_income_limit',
- 'spouse_total_guideline_amount',
- 'spouse_agree_to_child_support_amount',
- 'spouse_agreed_child_support_amount',
- 'spouse_reason_child_support_amount',
'you_spouse_entered_agreement',
'claimant_debts',
'claimant_expenses',
diff --git a/edivorce/fixtures/Question.json b/edivorce/fixtures/Question.json
index 3f8a4d26..bcd9e5f8 100644
--- a/edivorce/fixtures/Question.json
+++ b/edivorce/fixtures/Question.json
@@ -914,7 +914,7 @@
"description": "For Step 6, Your children - Income & expenses - Your Fact Sheet F",
"summary_order": 0,
"required": "Conditional",
- "conditional_target": "annual_gross_income",
+ "conditional_target": "spouse_annual_gross_income",
"reveal_response": ">150000"
},
"model": "core.question",
@@ -938,7 +938,7 @@
"description": "For Step 6, Your children - Income & expenses - Your Fact Sheet F",
"summary_order": 0,
"required": "Conditional",
- "conditional_target": "annual_gross_income",
+ "conditional_target": "spouse_annual_gross_income",
"reveal_response": ">150000"
},
"model": "core.question",
@@ -962,7 +962,7 @@
"description": "For Step 6, Your children - Income & expenses - Your Fact Sheet F",
"summary_order": 0,
"required": "Conditional",
- "conditional_target": "annual_gross_income",
+ "conditional_target": "spouse_annual_gross_income",
"reveal_response": ">150000"
},
"model": "core.question",
@@ -986,7 +986,7 @@
"description": "For Step 6, Your children - Income & expenses - Your Fact Sheet F",
"summary_order": 0,
"required": "Conditional",
- "conditional_target": "annual_gross_income",
+ "conditional_target": "spouse_annual_gross_income",
"reveal_response": ">150000"
},
"model": "core.question",
@@ -1010,7 +1010,7 @@
"description": "For Step 6, Your children - Income & expenses - Your Fact Sheet F",
"summary_order": 0,
"required": "Conditional",
- "conditional_target": "annual_gross_income",
+ "conditional_target": "spouse_annual_gross_income",
"reveal_response": ">150000"
},
"model": "core.question",
@@ -1034,7 +1034,7 @@
"description": "For Step 6, Your children - Income & expenses - Your Fact Sheet F",
"summary_order": 0,
"required": "Conditional",
- "conditional_target": "annual_gross_income",
+ "conditional_target": "spouse_annual_gross_income",
"reveal_response": ">150000"
},
"model": "core.question",
@@ -1046,7 +1046,7 @@
"description": "For Step 6, Your children - Income & expenses - Your Fact Sheet F",
"summary_order": 0,
"required": "Conditional",
- "conditional_target": "claimants_agree_to_child_support_amount",
+ "conditional_target": "agree_to_child_support_amount_you",
"reveal_response": "NO"
},
"model": "core.question",
@@ -1058,7 +1058,7 @@
"description": "For Step 6, Your children - Income & expenses - Your Fact Sheet F",
"summary_order": 0,
"required": "Conditional",
- "conditional_target": "claimants_agree_to_child_support_amount",
+ "conditional_target": "agree_to_child_support_amount_spouse",
"reveal_response": "NO"
},
"model": "core.question",
@@ -1070,7 +1070,7 @@
"description": "For Step 6, Your children - Income & expenses - Your Fact Sheet F",
"summary_order": 0,
"required": "Conditional",
- "conditional_target": "claimants_agree_to_child_support_amount",
+ "conditional_target": "agree_to_child_support_amount_you",
"reveal_response": "NO"
},
"model": "core.question",
@@ -1082,7 +1082,7 @@
"description": "For Step 6, Your children - Income & expenses - Your Fact Sheet F",
"summary_order": 0,
"required": "Conditional",
- "conditional_target": "claimants_agree_to_child_support_amount",
+ "conditional_target": "agree_to_child_support_amount_spouse",
"reveal_response": "NO"
},
"model": "core.question",
@@ -1098,102 +1098,6 @@
"model": "core.question",
"pk": "spouse_annual_gross_income"
},
-{
- "fields": {
- "name": "How many child(ren) are you asking for support?",
- "description": "For Step 6, Your children - Income & expenses - Spouse Fact Sheet F",
- "summary_order": 0,
- "required": "Conditional",
- "conditional_target": "spouse_annual_gross_income",
- "reveal_response": ">150000"
- },
- "model": "core.question",
- "pk": "spouse_number_children_seeking_support"
-},
-{
- "fields": {
- "name": "What is the Child Support Guidelines amount for $150,000?",
- "description": "For Step 6, Your children - Income & expenses - Spouse Fact Sheet F",
- "summary_order": 0,
- "required": "Conditional",
- "conditional_target": "spouse_annual_gross_income",
- "reveal_response": ">150000"
- },
- "model": "core.question",
- "pk": "spouse_child_support_amount_under_high_income"
-},
-{
- "fields": {
- "name": "What is the % of income over $150,000 from the Child Support Guidlines?",
- "description": "For Step 6, Your children - Income & expenses - Spouse Fact Sheet F",
- "summary_order": 0,
- "required": "Conditional",
- "conditional_target": "spouse_annual_gross_income",
- "reveal_response": ">150000"
- },
- "model": "core.question",
- "pk": "spouse_percent_income_over_high_income_limit"
-},
-{
- "fields": {
- "name": "What is the child support amount to be paid on the portion of income over $150,000?",
- "description": "For Step 6, Your children - Income & expenses - Spouse Fact Sheet F",
- "summary_order": 0,
- "required": "Conditional",
- "conditional_target": "spouse_annual_gross_income",
- "reveal_response": ">150000"
- },
- "model": "core.question",
- "pk": "spouse_amount_income_over_high_income_limit"
-},
-{
- "fields": {
- "name": "Guidelines table amount",
- "description": "For Step 6, Your children - Income & expenses - Spouse Fact Sheet F",
- "summary_order": 0,
- "required": "Conditional",
- "conditional_target": "spouse_annual_gross_income",
- "reveal_response": ">150000"
- },
- "model": "core.question",
- "pk": "spouse_total_guideline_amount"
-},
-{
- "fields": {
- "name": "What is the amount that you and your spouse have agreed to?",
- "description": "For Step 6, Your children - Income & expenses - Spouse Fact Sheet F",
- "summary_order": 0,
- "required": "Conditional",
- "conditional_target": "spouse_annual_gross_income",
- "reveal_response": ">150000"
- },
- "model": "core.question",
- "pk": "spouse_agree_to_child_support_amount"
-},
-{
- "fields": {
- "name": "What is the amount that you and your spouse have agreed to?",
- "description": "For Step 6, Your children - Income & expenses - Spouse Fact Sheet F",
- "summary_order": 0,
- "required": "Conditional",
- "conditional_target": "spouse_agree_to_child_support_amount",
- "reveal_response": "NO"
- },
- "model": "core.question",
- "pk": "spouse_agreed_child_support_amount"
-},
-{
- "fields": {
- "name": "Why do you think the court should approve your proposed amount?",
- "description": "For Step 6, Your children - Income & expenses - Spouse Fact Sheet F",
- "summary_order": 0,
- "required": "Conditional",
- "conditional_target": "spouse_agree_to_child_support_amount",
- "reveal_response": "NO"
- },
- "model": "core.question",
- "pk": "spouse_reason_child_support_amount"
-},
{
"fields": {
"name": "Are you or your spouse claiming undue hardship?",
From defe896422b4b03d20ce49c05f5ed68256cee0ee Mon Sep 17 00:00:00 2001
From: ariannedee
+ Since you have previously indicated that the child/children will live with both parents more or less equally
+ (between 40 to 60% of the time with each parent) we need you to answer the questions below, even if you have a Separation Agreement or
+ existing Court Order.
+ This is the number of children for which you and your spouse have a shared parenting arrangement
+ (the child spends at least 40 percent of the time with each of you in a year). If you and your spouse
+ have a split parenting arrangement for any other children, do not include them in this set of questions.
+
+ What is the approximate amount of time the children spend with each parent?
+
+ Note: This includes time that a parent is responsible for the children, even if they are not
+ physically with that parent (for example the child is at school).
+ For more information please refer to:
+ To figure out how much child support the
+
+ payor
+ will be paying under the guidelines:
+
+ To speak to someone in person, you can call the Department of Justice Canada's Family
+ Law Information Line at 1-888-373-2222. When you call, be ready to tell them:
+
+ Any other relevant information regarding the conditions, means, needs and other circumstances of
+ each spouse or of any child for whom support is sought? {% include 'partials/optional.html' %}
+ Amount of child support to be paid per month by payor Please note: You will need to indicate who the 'payor' is below.
+ Since you have previously indicated that you and your spouse have more than one child and
+ at least one of the children lives primarily with just 1 parent (more than 60% of the time)
+ you must complete Fact Sheet C.
+ This information is needed for the Judge. You will be able to indicate a different child support amount in a following step.
+
+ Do not include any children that are SHARED on fact sheet B. You may indicate 0 (zero) children for 1 of the parents in Fact
+ Sheet C and insert 0 (zero) dollars for child support amount.
+
+ Your spouse's annual income?
+
+ As per
+ {% include "partials/tooltip_link_federal_child_support_guidelines.html" with reference_link="http://laws-lois.justice.gc.ca/eng/regulations/SOR-97-175/page-2.html#h-6" link_text="sections 15 to 20" %}
+ of the Federal Child Support Guidelines
+ What is the 'Guideline' amount for child support payable by your spouse (as per
+ {% include "partials/tooltip_link_federal_child_support_guidelines.html" with reference_link="http://laws-lois.justice.gc.ca/eng/regulations/SOR-97-175/page-11.html#h-15" link_text="Federal Child Support Tables" %}
+ )?
+ Your annual income?
+ As per
+ {% include "partials/tooltip_link_federal_child_support_guidelines.html" with reference_link="http://laws-lois.justice.gc.ca/eng/regulations/SOR-97-175/page-2.html#h-6" link_text="sections 15 to 20" %}
+ of the Federal Child Support Guidelines
+ What is the 'Guideline' amount for child support payable by you (as per
+ {% include "partials/tooltip_link_federal_child_support_guidelines.html" with reference_link="http://laws-lois.justice.gc.ca/eng/regulations/SOR-97-175/page-11.html#h-15" link_text="Federal Child Support Tables" %}
+ )?
+
+ Since you have previously indicated that you have a child/children 19 years of age or older for whom support
+ is claimed, you will need to answer the next set of questions.
+
+ How many child(ren) are 19 years or older for whom you are asking for support?
+
+ What would the child support amount be using the Federal Child Support Guidelines?
+ This information is needed for the Judge. You will be able to indicate a different child support amount in a following step.
+
+ Because you have a child(ren) 19 years or older, who may also be contributing to their own support, do you and your spouse agree that the
+ monthly Guidelines table amount for child support is appropriate?
+ {% if agree_to_guideline_child_support_amount_error %}{% include 'partials/required.html' %}{% endif %}
+
+ What would be the appropriate amount?
+ {% if appropriate_spouse_paid_child_support_error %}{% include 'partials/required.html' %}{% endif %}
+
+ Please describe - Why do you think the court should approve your proposed amount?
+
+ Describe the condition, means, needs, and other circumstances of the child, and the financial
+ ability of
+ each parent to provide support to the child. {% if suggested_child_support_error %}{% include 'partials/required.html' %}{% endif %}
+
+ The Child Support Guidelines tables contain the base amounts for child support. If you our your spouse feel
+ that the child support amount will not leave enough money, you can claim that you will suffer
+
+ undue hardship.
+
+ The types of situations that might result in undue hardship include:
+ Since you have previously indicated that you will be claiming undue hardship you will need to provide
+ answers to the next set of questions. A claim for undue hardship can only be considered if the parent
+ making the claim can show that their household’s standard of living is not higher than the standard of
+ living in the household of the other parent. Often, income alone (which is all that is used to calculate
+ the guideline amount) does not reflect other circumstances that may impact a households’ finances.
+ * At least one debt, expense, person, or other circumstance must be added in
+ this area to claim Undue Hardship. You can turn off this requirement by selecting NO above for Undue Hardship. Unusual or excessive debts
+ What are the unusual or excessive debts that you owe? These are debts that were taken on to support the family
+ before you separated (e.g. student loans). The debt can also be due to earning a living (e.g. vehicle,
+ specialized equipment).
+ Unusually high expenses for parenting time, contact with, or access to a child.
+ For example, airfare and accommodation to visit the child in another city.
+ Supporting another person
+ Legal duty to support any other person, such as a former spouse or a new spouse who is too ill or disabled to be able to support himself
+ or herself.
+ Supporting dependent child/children from another relationship.
+ List the names of any other children for whom you have a legal duty to make support payments to.
+ Do not include the names of any children for whom you are asking for support for as a part of this
+ divorce application.
+ Support for a disabled or ill person.
+ Other undue hardship circumstances
+ {% input_field type="textarea" name="undue_hardship" value="" maxlength="500" multiple='true' class="fact-sheet-input form-control response-textarea" placeholder="" %}
+ Income of Other Persons in Household
+ Enter the name (s) and income for any other persons in your household (e.g. co-parent, step parent)
+ who have a
+
+ duty to support
+
+
+
+ a child.
+
+ Since you have previously indicated that the payor's income is over $150,000 you will need to provide
+ answers to the next set of questions. The child support guideline table you previously entered only goes
+ to $150,000. Income beyond that point requires a 2 stage calculation, the amount payable at $150,000 +
+ the amount payable on the income in excess of $150,000. This takes into account other factors such as
+ the financial ability of each parent, maintaining a certain quality of life, etc. It is no longer a
+ matter of there being money simply to look after the needs of the child, but rather the level of care
+ factoring in the family's lifestyle.
+
+
+ If the paying parent earns more than $150,000 per year, you may need to calculate both incomes.
+ The Federal Guidelines provide two options:
+
+ In some cases:
+
+ Source: The
+ {% include "partials/tooltip_link_federal_child_support_guidelines.html" with reference_link="http://www.justice.gc.ca/eng/rp-pr/fl-lf/child-enfant/guide/step5-etap5.html#h7" link_text="Federal Child Support Guidelines" %}
+ Department of Justice
+
- Since you have previously indicated that the child/children will live with both parents more or less equally
- (between 40 to 60% of the time with each parent) we need you to answer the questions below, even if you have a Separation Agreement or existing Court Order.
- This is the number of children for which you and your spouse have a shared parenting arrangement
- (the child spends at least 40 percent of the time with each of you in a year). If you and your spouse
- have a split parenting arrangement for any other children, do not include them in this set of questions.
-
- What is the approximate amount of time the children spend with each parent?
-
- Note: This includes time that a parent is responsible for the children, even if they are not
- physically with that parent (for example the child is at school).
- For more information please refer to:
- To figure out how much child support the
-
- payor
- will be paying under the guidelines:
-
- To speak to someone in person, you can call the Department of Justice Canada's Family
- Law Information Line at 1-888-373-2222. When you call, be ready to tell them:
-
- Any other relevant information regarding the conditions, means, needs and other circumstances of
- each spouse or of any child for whom support is sought? {% include 'partials/optional.html' %}
- Amount of child support to be paid per month by payor Please note: You will need to indicate who the 'payor' is below.
- Since you have previously indicated that you and your spouse have more than one child and
- at least one of the children lives primarily with just 1 parent (more than 60% of the time)
- you must complete Fact Sheet C.
- This information is needed for the Judge. You will be able to indicate a different child support amount in a following step.
-
- Do not include any children that are SHARED on fact sheet B. You may indicate 0 (zero) children for 1 of the parents in Fact Sheet C and insert 0 (zero) dollars for child support amount.
-
- Your spouse's annual income?
-
- As per
- {% include "partials/tooltip_link_federal_child_support_guidelines.html" with reference_link="http://laws-lois.justice.gc.ca/eng/regulations/SOR-97-175/page-2.html#h-6" link_text="sections 15 to 20" %}
- of the Federal Child Support Guidelines
- What is the 'Guideline' amount for child support payable by your spouse (as per
- {% include "partials/tooltip_link_federal_child_support_guidelines.html" with reference_link="http://laws-lois.justice.gc.ca/eng/regulations/SOR-97-175/page-11.html#h-15" link_text="Federal Child Support Tables" %}
- )?
- Your annual income?
- As per
- {% include "partials/tooltip_link_federal_child_support_guidelines.html" with reference_link="http://laws-lois.justice.gc.ca/eng/regulations/SOR-97-175/page-2.html#h-6" link_text="sections 15 to 20" %}
- of the Federal Child Support Guidelines
- What is the 'Guideline' amount for child support payable by you (as per
- {% include "partials/tooltip_link_federal_child_support_guidelines.html" with reference_link="http://laws-lois.justice.gc.ca/eng/regulations/SOR-97-175/page-11.html#h-15" link_text="Federal Child Support Tables" %}
- )?
- Shared Living Arrangement (Fact Sheet B)
+
+ This information is needed for the Judge. You will be able to indicate a different child support amount in a following step.
+ Number of children{% if number_of_children_error %}{% include 'partials/required.html' %}{% endif %}
+
+
+
+
+
+
+
+
+
+
+ You
+ Spouse
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Annual income as per
+ Federal Child Support
+ Guidelines
+
+
+
+
+
+
+
+
+
+ What is the 'Guideline' amount for child support?
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Difference between the Guidelines table amount of the claimant and the Guidelines table amount of the respondent
+
+
+
+
+
+
+ Special or extraordinary expenses (as per
+ Section 7 of the Federal Child
+ Support Guidelines
+
+
+ ) to be paid monthly
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Split Living Arrangement (Fact Sheet C)
+
+
+
+
+
+
+ How many children spend more than 60 percent of their time with you and for whom you are asking for support?
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ How many children spend more than 60 percent of their time with your spouse and for whom you are obliged to pay
+ support?
+
+
+ {% input_field type="number" name="number_of_children_claimant_spouse" class="positive-integer fact-sheet-input number-spinner" min="0" placeholder="enter number" %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Difference between Guidelines table amounts
+
+
+
+ Child(ren) 19 Years or Older (Fact Sheet D)
+ Are you or your spouse claiming undue hardship?{% if claiming_undue_hardship_error %}{% include 'partials/required.html' %}{% endif %}
+
+
+ Fact Sheet E Undue Hardship
+
+
+
+
+
+
+
+
+ Debt name
+ What are the
+
+ terms of this debt
+ ?
+
+ Monthly amount
+
+
+ {% include "partials/fact_sheet_excessive_debt.html" with debt_monthly_amount=0 %}
+
+ {% multiple_values_to_list source=claimant_debts as debts %}
+ {% for debt in debts %}
+
+ {% include "partials/fact_sheet_excessive_debt.html" with debt_name=debt.debt_name debt_terms=debt.debt_terms debt_monthly_amount=debt.debt_monthly_amount %}
+
+ {% endfor %}
+
+
+
+
+
+
+ Add Debt
+
+
+
+
+
+
+
+
+
+ Expense
+ Amount
+
+
+ {% include "partials/fact_sheet_expense.html" with expense_amount=0 %}
+
+ {% multiple_values_to_list source=claimant_expenses as expenses %}
+ {% for expense in expenses %}
+
+ {% include "partials/fact_sheet_expense.html" with expense_name=expense.expense_name expense_amount=expense.expense_amount %}
+
+ {% endfor %}
+
+
+
+
+
+
+ Add Expense
+
+
+
+
+
+
+
+
+
+ Name of person
+ Relationship
+ Describe reason(s) for support
+
+
+ {% include "partials/fact_sheet_supporting_person.html" with name_field="non_dependent_name" relationship_field="non_dependent_relationship" reason_field="non_dependent_reason" input_field_class="supporting-non-dependent-input-field" save_selector=".supporting-non-dependent-input-field" delete_button_class="btn-delete-supporting-non-dependent" %}
+
+ {% multiple_values_to_list source=supporting_non_dependents as non_dependents %}
+ {% for non_dependent in non_dependents %}
+
+ {% include "partials/fact_sheet_supporting_person.html" with name_field="non_dependent_name" relationship_field="non_dependent_relationship" reason_field="non_dependent_reason" input_field_class="supporting-non-dependent-input-field" save_selector=".supporting-non-dependent-input-field" delete_button_class="btn-delete-supporting-non-dependent" name=non_dependent.non_dependent_name relationship=non_dependent.non_dependent_relationship reason=non_dependent.non_dependent_reason %}
+
+ {% endfor %}
+
+
+
+
+
+
+ Add Person
+
+
+
+
+
+
+
+
+
+ Child's name
+ Relationship
+ Describe reason(s) for support
+
+
+ {% include "partials/fact_sheet_supporting_person.html" with name_field="supporting_dependent_name" relationship_field="supporting_dependent_relationship" reason_field="supporting_dependent_reason" input_field_class="supporting-dependent-input-field" delete_button_class="btn-delete-supporting-dependent" save_selector=".supporting-dependent-input-field" %}
+
+ {% multiple_values_to_list source=supporting_dependents as dependents %}
+ {% for dependent in dependents %}
+
+ {% include "partials/fact_sheet_supporting_person.html" with name_field="supporting_dependent_name" relationship_field="supporting_dependent_relationship" reason_field="supporting_dependent_reason" input_field_class="supporting-dependent-input-field" delete_button_class="btn-delete-supporting-dependent" save_selector=".supporting-dependent-input-field" name=dependent.supporting_dependent_name relationship=dependent.supporting_dependent_relationship reason=dependent.supporting_dependent_reason %}
+
+ {% endfor %}
+
+
+
+
+
+
+ Add Person
+
+
+
+
+
+
+
+
+
+
+ Name of person
+ Relationship
+ Describe reason(s) for support
+
+
+ {% include "partials/fact_sheet_supporting_person.html" with name_field="supporting_disabled_name" relationship_field="supporting_disabled_relationship" reason_field="supporting_disabled_reason" input_field_class="supporting-disabled-input-field" delete_button_class="btn-delete-supporting-disabled" save_selector=".supporting-disabled-input-field" %}
+
+ {% multiple_values_to_list source=supporting_disabled as dependents %}
+ {% for dependent in dependents %}
+
+ {% include "partials/fact_sheet_supporting_person.html" with name_field="supporting_disabled_name" relationship_field="supporting_disabled_relationship" reason_field="supporting_disabled_reason" input_field_class="supporting-disabled-input-field" delete_button_class="btn-delete-supporting-disabled" name=dependent.supporting_disabled_name relationship=dependent.supporting_disabled_relationship reason=dependent.supporting_disabled_reason save_selector=".supporting-disabled-input-field" %}
+
+ {% endfor %}
+
+
+
+
+
+
+ Add Person
+
+
+
+
+
+
+
+
+
+
+ Name of person
+ Annual income
+
+
+ {% include "partials/fact_sheet_income_others.html" with income_others_amount=0 %}
+
+ {% multiple_values_to_list source=income_others as incomes %}
+ {% for income in incomes %}
+
+ {% include "partials/fact_sheet_income_others.html" with income_others_name=income.income_others_name income_others_amount=income.income_others_amount %}
+
+ {% endfor %}
+
+
+
+
+
+
+
+ Total
+
+
+
+
+
+
+
+ Add Person
+
+ Income over $150,000 (Fact Sheet F)
+
+
+
+
+ Shared Living Arrangement (Fact Sheet B)
-
- This information is needed for the Judge. You will be able to indicate a different child support amount in a following step.
- Number of children{% if number_of_children_error %}{% include 'partials/required.html' %}{% endif %}
-
-
-
-
-
-
-
-
-
-
- You
- Spouse
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Annual income as per
- Federal Child Support Guidelines
-
-
-
-
-
-
-
-
-
- What is the 'Guideline' amount for child support?
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Difference between the Guidelines table amount of the claimant and the Guidelines table amount of the respondent
-
-
-
-
-
-
- Special or extraordinary expenses (as per
- Section 7 of the Federal Child Support Guidelines
-
-
- ) to be paid monthly
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Split Living Arrangement (Fact Sheet C)
-
-
-
-
-
-
- How many children spend more than 60 percent of their time with you and for whom you are asking for support?
-
-
- {% input_field type="number" name="number_of_children_claimant" class="positive-integer fact-sheet-input number-spinner" min="0" placeholder="enter number" %}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- How many children spend more than 60 percent of their time with your spouse and for whom you are obliged to pay support?
-
-
- {% input_field type="number" name="number_of_children_claimant_spouse" class="positive-integer fact-sheet-input number-spinner" min="0" placeholder="enter number"%}
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Difference between Guidelines table amounts
-
-
-
-
- Since you have previously indicated that you have a child/children 19 years of age or older for whom support - is claimed, you will need to answer the next set of questions. -
- -- How many child(ren) are 19 years or older for whom you are asking for support? -
-- What would the child support amount be using the Federal Child Support Guidelines? - This information is needed for the Judge. You will be able to indicate a different child support amount in a following step. -
-- Because you have a child(ren) 19 years or older, who may also be contributing to their own support, do you and your spouse agree that the monthly Guidelines table amount for child support is appropriate? - {% if agree_to_guideline_child_support_amount_error %}{% include 'partials/required.html' %}{% endif %} -
-- What would be the appropriate amount? - {% if appropriate_spouse_paid_child_support_error %}{% include 'partials/required.html' %}{% endif %} -
- -- Please describe - Why do you think the court should approve your proposed amount? -
-- Describe the condition, means, needs, and other circumstances of the child, and the financial - ability of - each parent to provide support to the child. {% if suggested_child_support_error %}{% include 'partials/required.html' %}{% endif %} -
-- Since you have previously indicated that the payor's income is over $150,000 you will need to provide - answers to the next set of questions. The child support guideline table you previously entered only goes - to $150,000. Income beyond that point requires a 2 stage calculation, the amount payable at $150,000 + - the amount payable on the income in excess of $150,000. This takes into account other factors such as - the financial ability of each parent, maintaining a certain quality of life, etc. It is no longer a - matter of there being money simply to look after the needs of the child, but rather the level of care - factoring in the family's lifestyle. -
- --
- If the paying parent earns more than $150,000 per year, you may need to calculate both incomes. - The Federal Guidelines provide two options: -
-- In some cases: -
-- Source: The - {% include "partials/tooltip_link_federal_child_support_guidelines.html" with reference_link="http://www.justice.gc.ca/eng/rp-pr/fl-lf/child-enfant/guide/step5-etap5.html#h7" link_text="Federal Child Support Guidelines" %} - Department of Justice -
- -- The Child Support Guidelines tables contain the base amounts for child support. If you our your spouse feel - that the child support amount will not leave enough money, you can claim that you will suffer - - undue hardship. - -
- -The types of situations that might result in undue hardship include:
-- Since you have previously indicated that you will be claiming undue hardship you will need to provide - answers to the next set of questions. A claim for undue hardship can only be considered if the parent - making the claim can show that their household’s standard of living is not higher than the standard of - living in the household of the other parent. Often, income alone (which is all that is used to calculate - the guideline amount) does not reflect other circumstances that may impact a households’ finances. -
- {% if derived.missing_undue_hardship_details %}* At least one debt, expense, person, or other circumstance must be added in - this area to claim Undue Hardship. You can turn off this requirement by selecting NO above for Undue Hardship.
{% endif %} -Unusual or excessive debts
-- What are the unusual or excessive debts that you owe? These are debts that were taken on to support the family - before you separated (e.g. student loans). The debt can also be due to earning a living (e.g. vehicle, - specialized equipment). -
-| Debt name | -What are the - - terms of this debt - ? - | -Monthly amount | -- |
|---|---|---|---|
| - Add Debt - | -|||
Unusually high expenses for parenting time, contact with, or access to a child.
-- For example, airfare and accommodation to visit the child in another city. -
-| Expense | -Amount | -- |
|---|---|---|
| - Add Expense - | -||
Supporting another person
-- Legal duty to support any other person, such as a former spouse or a new spouse who is too ill or disabled to be able to support himself or herself. -
-| Name of person | -Relationship | -Describe reason(s) for support | -- |
|---|---|---|---|
| - Add Person - | -|||
Supporting dependent child/children from another relationship.
-- List the names of any other children for whom you have a legal duty to make support payments to. - Do not include the names of any children for whom you are asking for support for as a part of this - divorce application. -
-| Child's name | -Relationship | -Describe reason(s) for support | -- |
|---|---|---|---|
| - Add Person - | -|||
Support for a disabled or ill person.
-| Name of person | -Relationship | -Describe reason(s) for support | -- |
|---|---|---|---|
| - Add Person - | -|||
- Other undue hardship circumstances - {% input_field type="textarea" name="undue_hardship" value="" maxlength="500" multiple='true' class="fact-sheet-input form-control response-textarea" placeholder="" %} -
- - -Income of Other Persons in Household
-- Enter the name (s) and income for any other persons in your household (e.g. co-parent, step parent) - who have a - - duty to support - - - - a child. -
-| Name of person | -Annual income | -- |
|---|---|---|
| - Total - | -
-
- {% money_input_field id="total_income_others" class="fact-sheet-input money" readonly="" %}
-
- |
- |
| - Add Person - | -||
Please check all that apply: