@ -364,7 +364,7 @@
< td >
< td >
< strong > Children:< / strong >
< strong > Children:< / strong >
< br > < br >
< br > < br >
< span class = "td-list-item" > {% checkbox children_of_marriage='NO ' %}< / span >
< span class = "td-list-item" > {% checkbox has_children_of_marriage='False ' %}< / span >
< div class = "td-list-text" >
< div class = "td-list-text" >
There are no children of the marriage, as defined by
There are no children of the marriage, as defined by
the < em > Divorce Act< / em > (Canada), or children of whom
the < em > Divorce Act< / em > (Canada), or children of whom
@ -372,7 +372,7 @@
of the < em > Family Law Act< / em > .
of the < em > Family Law Act< / em > .
< / div >
< / div >
< br > < strong > OR< / strong > < br > < br >
< br > < strong > OR< / strong > < br > < br >
< span class = "td-list-item" > {% checkbox children_of_marriage='YES' %}< / span >
< span class = "td-list-item" > {% checkbox derived.has_ children_of_marriage %}< / span >
< div class = "td-list-text" >
< div class = "td-list-text" >
There are children of the marriage, as defined by the
There are children of the marriage, as defined by the
< em > Divorce Act< / em > (Canada), or children of whom
< em > Divorce Act< / em > (Canada), or children of whom
@ -385,8 +385,8 @@
< th align = "center" > Full name< / th >
< th align = "center" > Full name< / th >
< th align = "center" > Birth date< br / > [< em > dd/mmm/yyyy< / em > ]< / th >
< th align = "center" > Birth date< br / > [< em > dd/mmm/yyyy< / em > ]< / th >
< th align = "center" > Resides with< / th >
< th align = "center" > Resides with< / th >
< /tr
{% if responses.children_of_marriage == 'YES' %}
< / tr >
{% if derived.has_children_of_marriage %}
{% for child in responses.children %}
{% for child in responses.children %}
< tr >
< tr >
< td align = "center" > {{ child.child_name }}< / td >
< td align = "center" > {{ child.child_name }}< / td >
@ -418,14 +418,14 @@
< tr >
< tr >
< td colname = "c2" >
< td colname = "c2" >
< span class = "td-list-item" >
< span class = "td-list-item" >
A. {% checkbox want_parenting_arrangements='YES' children_of_marriage='YES' want_which_orders='Child support ' %}
A. {% checkbox derived.has_children_of_marriage derived.wants_child_support want_parenting_arrangements='YES ' %}
< / span >
< / span >
< div class = "td-list-text" >
< div class = "td-list-text" >
Claimant 1 and Claimant 2 are asking for the following
Claimant 1 and Claimant 2 are asking for the following
order respecting arrangements for parenting or
order respecting arrangements for parenting or
contact:
contact:
< span class = "form-entry form-textarea not-complete form-list-textarea" >
< span class = "form-entry form-textarea not-complete form-list-textarea" >
{% if responses.children_of_marriage == 'YES' and responses.want_parenting_arrangements == 'YES' and responses.order_respecting_arrangement and 'Child support' in responses.want_which_orders %}
{% if derived.has_children_of_marriage and responses.want_parenting_arrangements == 'YES' and responses.order_respecting_arrangement and derived.wants_child_support %}
< ul > {{ responses.order_respecting_arrangement|striptags|linebreaksli }}< / ul >
< ul > {{ responses.order_respecting_arrangement|striptags|linebreaksli }}< / ul >
{% endif %}
{% endif %}
< / span >
< / span >
@ -435,18 +435,18 @@
< tr >
< tr >
< td colname = "c2" >
< td colname = "c2" >
< span class = "td-list-item" >
< span class = "td-list-item" >
B.
B.
{% if responses.child_support_in_order == 'NO' %}
{% if responses.child_support_in_order == 'NO' %}
{% checkbox false %}
{% checkbox false %}
{% else %}
{% else %}
{% checkbox responses.order_for_child_support children_of_marriage='YES' want_which_orders='Child support' %}
{% checkbox responses.order_for_child_support derived.has_children_of_marriage derived.wants_child_support %}
{% endif %}
{% endif %}
< / span >
< / span >
< div class = "td-list-text" >
< div class = "td-list-text" >
Claimant 1 and Claimant 2 are asking for an order for
Claimant 1 and Claimant 2 are asking for an order for
child support as follows:
child support as follows:
< span class = "form-entry form-textarea not-complete form-list-textarea" >
< span class = "form-entry form-textarea not-complete form-list-textarea" >
{% if responses.children_of_marriage == 'YES' and responses.order_for_child_support and 'Child support' in responses.want_which_orders and responses.child_support_in_order != 'NO' %}
{% if derived.has_children_of_marriage and responses.order_for_child_support and derived.wants_child_support and responses.child_support_in_order != 'NO' %}
< ul > {{ responses.order_for_child_support|striptags|linebreaksli }}< / ul >
< ul > {{ responses.order_for_child_support|striptags|linebreaksli }}< / ul >
{% endif %}
{% endif %}
< / span >
< / span >
@ -456,12 +456,12 @@
< tr >
< tr >
< td colname = "c2" >
< td colname = "c2" >
< span class = "td-list-item" >
< span class = "td-list-item" >
C. {% checkbox responses.describe_order_special_extra_expenses children_of_marriage='YES' want_which_orders='Child support' special_extraordinary_expenses='YES' %}
C. {% checkbox derived.wants_child_support derived.has_children_of_marriage special_extraordinary_expenses='YES' %}
< / span >
< / span >
< div class = "td-list-text" >
< div class = "td-list-text" >
Claimant 1 and Claimant 2 are asking for an order for Special and Extraordinary Expenses as follows:< br >
Claimant 1 and Claimant 2 are asking for an order for Special and Extraordinary Expenses as follows:< br >
< span class = "form-entry form-textarea not-complete form-list-textarea" >
< span class = "form-entry form-textarea not-complete form-list-textarea" >
{% if responses.children_of_marriage == 'YES' and responses.special_extraordinary_expenses == 'YES' and 'Child support' in responses.want_which_orders %}
{% if derived.has_children_of_marriage and responses.special_extraordinary_expenses == 'YES' and derived.wants_child_support %}
< ul > {{ responses.describe_order_special_extra_expenses|striptags|linebreaksli }}< / ul >
< ul > {{ responses.describe_order_special_extra_expenses|striptags|linebreaksli }}< / ul >
{% endif %}
{% endif %}
< / span >
< / span >
@ -472,7 +472,7 @@
< tr >
< tr >
< td colname = "c2" >
< td colname = "c2" >
< span class = "td-list-item" >
< span class = "td-list-item" >
D. {% checkbox responses.child_support_act children_of_marriage='YES' want_which_orders='Child support' %}
D. {% checkbox responses.child_support_act derived.has_children_of_marriage derived.wants_child_support %}
< / span >
< / span >
< div class = "td-list-text" >
< div class = "td-list-text" >
Claimant 1 and Claimant 2 are asking for the orders
Claimant 1 and Claimant 2 are asking for the orders
@ -480,10 +480,10 @@
following statute(s):< br >
following statute(s):< br >
[< em > Check one or both of the following boxes, as
[< em > Check one or both of the following boxes, as
applicable.< / em > ]< br > < br >
applicable.< / em > ]< br > < br >
{% checkbox child_support_act='the Divorce Act (Canada)' children_of_marriage='YES' want_which_orders='Child support ' %}
{% checkbox derived.has_children_of_marriage derived.wants_child_support child_support_act='the Divorce Act (Canada) ' %}
the < em > Divorce Act< / em > (Canada)
the < em > Divorce Act< / em > (Canada)
{% checkbox child_support_act='the Family Law Act' children_of_marriage='YES' want_which_orders='Child suppor t' %}
{% checkbox derived.has_children_of_marriage derived.wants_child_support child_support_act='the Family Law Ac t' %}
the < em > Family Law Act< / em >
the < em > Family Law Act< / em >
< / div >
< / div >
< / td >
< / td >
@ -496,11 +496,11 @@
< tbody >
< tbody >
< tr >
< tr >
< td colname = "c2" >
< td colname = "c2" >
< span class = "td-list-item" > {% checkbox want_which_orders='Spousal support' %}< / span >
< span class = "td-list-item" > {% checkbox derived.wants_spousal_support %}< / span >
< div class = "td-list-text" >
< div class = "td-list-text" >
Claimant 1 and Claimant 2 are asking for an order for spousal support as follows:< br >
Claimant 1 and Claimant 2 are asking for an order for spousal support as follows:< br >
< span class = "form-entry form-textarea not-complete" >
< span class = "form-entry form-textarea not-complete" >
{% if 'Spousal support' in responses.want_which_orders and responses.spouse_support_details %}
{% if derived.wants_spousal_support and responses.spouse_support_details %}
< ul > {{responses.spouse_support_details|striptags|linebreaksli }}< / ul >
< ul > {{responses.spouse_support_details|striptags|linebreaksli }}< / ul >
{% endif %}
{% endif %}
< / span >
< / span >
@ -510,16 +510,16 @@
< tr >
< tr >
< td colname = "c2" >
< td colname = "c2" >
< span class = "td-list-item" >
< span class = "td-list-item" >
{% checkbox responses.spouse_support_act want_which_orders='Spousal support' %}
{% checkbox responses.spouse_support_act derived.wants_spousal_support %}
< / span >
< / span >
< div class = "td-list-text" >
< div class = "td-list-text" >
Claimant 1 and Claimant 2 are asking for an order for spousal support under:< br >
Claimant 1 and Claimant 2 are asking for an order for spousal support under:< br >
[< em > Check one or both of the following boxes, as applicable.< / em > ]
[< em > Check one or both of the following boxes, as applicable.< / em > ]
< br > < br >
< br > < br >
{% checkbox want_which_orders='Spousal support' spouse_support_act='The Divorce Act (Canada)' %}
{% checkbox derived.wants_spousal_support spouse_support_act='The Divorce Act (Canada)' %}
the < em > Divorce Act < / em > (Canada)
the < em > Divorce Act < / em > (Canada)
{% checkbox want_which_orders='Spousal support' spouse_support_act='The Family Law Act' %}
{% checkbox derived.wants_spousal_support spouse_support_act='The Family Law Act' %}
the < em > Family Law Act < / em >
the < em > Family Law Act < / em >
< / div >
< / div >
@ -535,13 +535,13 @@
< td >
< td >
< div > < strong > A. Property claims under the < em > Family Law Act< / em > < / strong > < br > < br > < / div >
< div > < strong > A. Property claims under the < em > Family Law Act< / em > < / strong > < br > < br > < / div >
< span class = "td-list-item" >
< span class = "td-list-item" >
{% checkbox want_which_orders='Division of property and debts' %}
{% checkbox derived.wants_property_division %}
< / span >
< / span >
< div class = "td-list-text" >
< div class = "td-list-text" >
Claimant 1 and Claimant 2 are asking for an order for:< br > < br >
Claimant 1 and Claimant 2 are asking for an order for:< br > < br >
< div >
< div >
< span class = "td-list-item" >
< span class = "td-list-item" >
{% checkbox want_which_orders='Division of property and debts' deal_with_property_debt='Equal division' %}
{% checkbox derived.wants_property_division deal_with_property_debt='Equal division' %}
< / span >
< / span >
< div class = "td-list-text" >
< div class = "td-list-text" >
an equal division of family property and family debt< br > < br >
an equal division of family property and family debt< br > < br >
@ -549,12 +549,12 @@
< / div >
< / div >
< div >
< div >
< span class = "td-list-item" >
< span class = "td-list-item" >
{% checkbox want_which_orders='Division of property and debts' deal_with_property_debt='Unequal division' %}
{% checkbox derived.wants_property_division deal_with_property_debt='Unequal division' %}
< / span >
< / span >
< div class = "td-list-text" >
< div class = "td-list-text" >
an unequal division of family property and family debt as follows:
an unequal division of family property and family debt as follows:
< span class = "form-entry form-textarea not-complete" >
< span class = "form-entry form-textarea not-complete" >
{% if responses.deal_with_property_debt == 'Unequal division' and responses.how_to_divide_property_debt and 'Division of property and debts' in responses.want_which_orders %}
{% if derived.wants_property_division and responses.deal_with_property_debt == 'Unequal division' and responses.how_to_divide_property_debt %}
< ul > {{ responses.how_to_divide_property_debt|striptags|linebreaksli }}< / ul >
< ul > {{ responses.how_to_divide_property_debt|striptags|linebreaksli }}< / ul >
{% endif %}
{% endif %}
< / span >
< / span >
@ -566,13 +566,13 @@
< tr >
< tr >
< td >
< td >
< div > < strong > B. Other property claims< / strong > < br > < br > < / div >
< div > < strong > B. Other property claims< / strong > < br > < br > < / div >
< span class = "td-list-item" > {% checkbox responses.other_property_claims %}< / span >
< span class = "td-list-item" > {% checkbox derived.wants_property_division responses.other_property_claims %}< / span >
< div class = "td-list-text" >
< div class = "td-list-text" >
Claimant 1 and Claimant 2 ask for an order respecting
Claimant 1 and Claimant 2 ask for an order respecting
an interest in property or for compensation instead
an interest in property or for compensation instead
of an interest in that property, as follows:< br >
of an interest in that property, as follows:< br >
< span class = "form-entry form-textarea not-complete" >
< span class = "form-entry form-textarea not-complete" >
{% if responses.other_property_claims %}
{% if derived.wants_property_division and responses.other_property_claims %}
< ul > {{ responses.other_property_claims|striptags|linebreaksli }}< / ul >
< ul > {{ responses.other_property_claims|striptags|linebreaksli }}< / ul >
{% endif %}
{% endif %}
< / span >
< / span >
@ -586,14 +586,17 @@
< table class = "table table-bordered table-fixed" >
< table class = "table table-bordered table-fixed" >
< tbody >
< tbody >
< tr >
< tr >
{% check_list source=responses.want_which_orders value='Other orders' as order_wanted %}
< td >
< td >
< span class = "td-list-item" >
< span class = "td-list-item" >
{% if order_wanted and responses.other_orders_detail or responses.name_change_you == 'YES' or responses.name_change_spouse == 'YES' %}
{% checkbox %}
{% else %}
{% if derived.wants_other_orders %}
{% if responses.other_orders_detail or responses.name_change_you == 'YES' or responses.name_change_spouse == 'YES' %}
{% checkbox %}
{% else %}
{% checkbox False %}
{% endif %}
{% else %}
{% checkbox False %}
{% checkbox False %}
{% endif %}
{% endif %}
< / span >
< / span >
< div class = "td-list-text" >
< div class = "td-list-text" >
Claimant 1 and Claimant 2 are asking for an order in the
Claimant 1 and Claimant 2 are asking for an order in the
@ -601,11 +604,11 @@
< span class = "form-entry form-textarea not-complete" >
< span class = "form-entry form-textarea not-complete" >
< ul >
< ul >
{% if responses.other_orders_detail and order_wanted %}
{% if derived.wants_other_orders and responses.other_orders_detail %}
{{ responses.other_orders_detail|striptags|linebreaksli }}
{{ responses.other_orders_detail|striptags|linebreaksli }}
{% endif %}
{% endif %}
{% if responses.name_change_you == 'YES' %}
{% if derived.wants_other_orders and responses.name_change_you == 'YES' %}
< li >
< li >
Pursuant to Section 5 of the Name Act, Claimant 1 shall
Pursuant to Section 5 of the Name Act, Claimant 1 shall
bear the name of {{ responses.name_change_you_fullname }}
bear the name of {{ responses.name_change_you_fullname }}
@ -613,7 +616,7 @@
< / li >
< / li >
{% endif %}
{% endif %}
{% if responses.name_change_spouse == 'YES' %}
{% if derived.wants_other_orders and responses.name_change_spouse == 'YES' %}
< li >
< li >
Pursuant to Section 5 of the Name Act, Claimant 2 shall
Pursuant to Section 5 of the Name Act, Claimant 2 shall
bear the name of {{ responses.name_change_spouse_fullname }}
bear the name of {{ responses.name_change_spouse_fullname }}