Browse Source

DIV-500

pull/160/head
Justin Johnson 8 years ago
parent
commit
fc56df7817
3 changed files with 111 additions and 65 deletions
  1. +39
    -19
      edivorce/apps/core/templates/pdf/form38.html
  2. +49
    -30
      edivorce/apps/core/templates/pdf/form38_we.html
  3. +23
    -16
      edivorce/apps/core/templates/pdf/form52.html

+ 39
- 19
edivorce/apps/core/templates/pdf/form38.html View File

@ -24,49 +24,75 @@
<body>
<div class="print-wrapper">
<h1 class="text-center">Form F38 <br>(Rule 10-10 (2))</h1>
<p class="text-right">
Court File No.: <span class="form-entry not-complete">&nbsp;</span>
</p>
<p class="text-right">
Court Registry: {% if responses.court_registry_for_filing %} {{ responses.court_registry_for_filing }} {% else %} <span class="form-entry not-complete">&nbsp;</span> {% endif %}
Court Registry: {% required responses.court_registry_for_filing %}
</p>
<p class="text-right">
This is the <span class="form-entry not-complete"></span> affidavit
</p>
<p class="text-right">
of {% if responses.name_claimant %}{{ responses.name_claimant }}{% else %}<span class="form-entry not-complete"></span>{% endif %} in this case
of {% required responses.name_claimant %} in this case
</p>
<p class="text-right">
and was made on <span class="form-entry not-complete"></span>
</p>
<p class="text-center">
<em>In the Supreme Court of British Columbia</em>
</p>
<p>
Claimant 1: {% include "partials/name_with_alias.html" with name=responses.name_you use_other_name=responses.any_other_name_you other_names=responses.other_name_you class_name='form-entry_claimant' %}
</p>
<p>
Claimant 2: {% include "partials/name_with_alias.html" with name=responses.name_spouse use_other_name=responses.any_other_name_spouse other_names=responses.other_name_spouse class_name='form-entry_claimant' %}
</p>
<p class="text-center">
<strong>AFFIDAVIT - DESK ORDER DIVORCE</strong>
</p>
<p>
I, {% if responses.name_claimant %}{% include "partials/name_with_alias.html" with name=responses.name_claimant use_other_name=responses.any_other_name_claimant other_names=responses.other_name_claimant %}{% else %}<span class="form-entry not-complete"></span>{% endif %}, of
{% if responses.address_to_send_official_document_street_claimant and responses.address_to_send_official_document_city_claimant and responses.address_to_send_official_document_country_claimant and responses.address_to_send_official_document_postal_code_claimant %}
{{ responses.address_to_send_official_document_street_claimant }}, {{ responses.address_to_send_official_document_city_claimant }},
{% if responses.address_to_send_official_document_prov_claimant %}
{{ responses.address_to_send_official_document_prov_claimant }},
{% endif %}
{% if responses.address_to_send_official_document_country_claimant == 'Other' %} {{ responses.address_to_send_official_document_other_country_claimant }}{% else %} {{ responses.address_to_send_official_document_country_claimant }}{% endif %}, {{ responses.address_to_send_official_document_postal_code_claimant }}{% else %}<span class="form-entry not-complete"></span>{% endif %},
{% if responses.occupation_claimant %} {{ responses.occupation_claimant }}{% else %}<span class="form-entry not-complete"></span>{% endif %}, SWEAR (OR AFFIRM) THAT:
I,
{% if responses.name_claimant %}
{% include "partials/name_with_alias.html" with name=responses.name_claimant use_other_name=responses.any_other_name_claimant other_names=responses.other_name_claimant %}
{% else %}<span class="form-entry not-complete"></span>{% endif %},
of
{% if responses.address_to_send_official_document_street_claimant and responses.address_to_send_official_document_city_claimant %}
{% required responses.address_to_send_official_document_street_claimant %},
{% required responses.address_to_send_official_document_city_claimant size=100 %},
{% if responses.address_to_send_official_document_prov_claimant %}
{{ responses.address_to_send_official_document_prov_claimant }},
{% endif %}
{% if responses.address_to_send_official_document_country_claimant == 'Other' %}
{% required responses.address_to_send_official_document_other_country_claimant size=100 %}
{% else %}
{% required responses.address_to_send_official_document_country_claimant size=100 %}
{% endif %},
{% required responses.address_to_send_official_document_postal_code_claimant size=80 %},
{% else %}
<span class="form-entry not-complete"></span>,
{% endif %}
{% required responses.occupation_claimant %}
<br />
SWEAR (OR AFFIRM) THAT:
</p>
<ol class="numbered-paragraphs">
<li>
I am {% if responses.which_claimant %}{{ responses.which_claimant }}{% else %}<span class="form-entry not-complete">{% endif %}</span>.
I am {% required responses.which_claimant %}.
</li>
<li>
There is no possibility of reconciliation between my spouse and me.
@ -95,13 +121,7 @@
<li>
I was living separate and apart from my spouse at the start of this
family law case and I have lived separate and apart from my spouse
since
{% if responses.separation_date %}
{{ responses.separation_date|date_formatter }},
{% else %}
<span class="form-entry not-complete"></span>,
{% endif %}
except:
since {% required responses.separation_date|date_formatter %}, except:
{% multiple_values_to_list source=responses.reconciliation_period as periods %}
{% if periods != '[]' and responses.try_reconcile_after_separated == 'YES' %}
{% for period in periods %}


+ 49
- 30
edivorce/apps/core/templates/pdf/form38_we.html View File

@ -22,75 +22,94 @@
</head>
<body>
<div class="print-wrapper">
<h1 class="text-center">Form F38 <br>(Rule 10-10 (2))</h1>
<p class="text-right">
Court File No.: <span class="form-entry not-complete">&nbsp;</span>
</p>
<p class="text-right">
Court Registry: {% if responses.court_registry_for_filing %} {{ responses.court_registry_for_filing }} {% else %} <span class="form-entry not-complete">&nbsp;</span> {% endif %}
Court Registry: {% required responses.court_registry_for_filing %}
</p>
<p class="text-right">
This is the <span class="form-entry not-complete"></span> affidavit
</p>
<p class="text-right">
of {% if responses.name_you %}{{ responses.name_you }}{% else %}<span class="form-entry not-complete"></span>{% endif %}
and {% if responses.name_spouse %}{{ responses.name_spouse }}{% else %}<span class="form-entry not-complete"></span>{% endif %}
of {% required responses.name_you %}
and {% required responses.name_spouse %}
in this case
</p>
<p class="text-right">
and was made on <span class="form-entry not-complete"></span>
</p>
<p class="text-center">
<em>In the Supreme Court of British Columbia</em>
</p>
<p>
Claimant 1: {% include "partials/name_with_alias.html" with name=responses.name_you use_other_name=responses.any_other_name_you other_names=responses.other_name_you class_name='form-entry_claimant' %}
</p>
<p>
Claimant 2: {% include "partials/name_with_alias.html" with name=responses.name_spouse use_other_name=responses.any_other_name_spouse other_names=responses.other_name_spouse class_name='form-entry_claimant' %}
</p>
<p class="text-center">
<strong>AFFIDAVIT - DESK ORDER DIVORCE</strong>
</p>
<p>
We, {% if responses.name_you %}{% include "partials/name_with_alias.html" with name=responses.name_you use_other_name=responses.any_other_name_you other_names=responses.other_name_you %}{% else %}<span class="form-entry not-complete"></span>{% endif %}, of
{% required responses.address_to_send_official_document_street_you %},
{% required responses.address_to_send_official_document_city_you size='100' %},
{% if responses.address_to_send_official_document_prov_you %}
{{ responses.address_to_send_official_document_prov_you }},
{% endif %}
{% if responses.address_to_send_official_document_country_you == 'Other' %}
{% required responses.address_to_send_official_document_other_country_you size='100' %}
{% else %}
{% required responses.address_to_send_official_document_country_you size='100' %}
{% endif %},
{% required responses.address_to_send_official_document_postal_code_you size='80' %},
We,
{% if responses.name_you %}
{% include "partials/name_with_alias.html" with name=responses.name_you use_other_name=responses.any_other_name_you other_names=responses.other_name_you %}
{% else %}<span class="form-entry not-complete"></span>{% endif %},
of
{% if responses.address_to_send_official_document_street_you and responses.address_to_send_official_document_city_you %}
{% required responses.address_to_send_official_document_street_you %},
{% required responses.address_to_send_official_document_city_you size='100' %},
{% if responses.address_to_send_official_document_prov_you %}
{{ responses.address_to_send_official_document_prov_you }},
{% endif %}
{% if responses.address_to_send_official_document_country_you == 'Other' %}
{% required responses.address_to_send_official_document_other_country_you size='100' %}
{% else %}
{% required responses.address_to_send_official_document_country_you size='100' %}
{% endif %},
{% required responses.address_to_send_official_document_postal_code_you size='80' %},
{% else %}<span class="form-entry not-complete"></span>,{% endif %}
{% required responses.occupation_you %},<br />
and <br />
{% if responses.name_spouse %}{% include "partials/name_with_alias.html" with name=responses.name_spouse use_other_name=responses.any_other_name_spouse other_names=responses.other_name_spouse %}{% else %}<span class="form-entry not-complete"></span>{% endif %}, of
{% if responses.name_spouse %}
{% include "partials/name_with_alias.html" with name=responses.name_spouse use_other_name=responses.any_other_name_spouse other_names=responses.other_name_spouse %}
{% else %}<span class="form-entry not-complete"></span>{% endif %}, of
{% required responses.address_to_send_official_document_street_spouse %},
{% required responses.address_to_send_official_document_city_spouse size='100' %},
{% if responses.address_to_send_official_document_prov_spouse %}
{{ responses.address_to_send_official_document_prov_spouse }},
{% endif %}
{% if responses.address_to_send_official_document_country_spouse == 'Other' %}
{% required responses.address_to_send_official_document_other_country_spouse size='100' %},
{% else %}
{% required responses.address_to_send_official_document_country_spouse size='100' %},
{% endif %}
{% required responses.address_to_send_official_document_postal_code_spouse size='100' %},
{% if responses.address_to_send_official_document_street_spouse and responses.address_to_send_official_document_city_spouse %}
{% required responses.address_to_send_official_document_street_spouse %},
{% required responses.address_to_send_official_document_city_spouse size='100' %},
{% if responses.address_to_send_official_document_prov_spouse %}
{{ responses.address_to_send_official_document_prov_spouse }},
{% endif %}
{% if responses.address_to_send_official_document_country_spouse == 'Other' %}
{% required responses.address_to_send_official_document_other_country_spouse size='100' %},
{% else %}
{% required responses.address_to_send_official_document_country_spouse size='100' %},
{% endif %}
{% required responses.address_to_send_official_document_postal_code_spouse size='100' %},
{% else %}<span class="form-entry not-complete"></span>,{% endif %}
{% required responses.occupation_spouse %},<br />
SWEAR (OR AFFIRM) THAT:
</p>
<ol class="numbered-paragraphs">
<li>We are claimant 1 and claimant 2.</li>
<li>There is no possibility of reconciliation between my spouse and me.</li>


+ 23
- 16
edivorce/apps/core/templates/pdf/form52.html View File

@ -63,44 +63,51 @@
<p>
<em>[Select whichever one of the 4 following provisions is correct, provide any required information and remove the provisions that have not been selected so that they do not appear in the form when the form is filed.]</em>
</p>
<p class="schIndent1">
<p>
This family law case coming on for trial at <span class="form-entry not-complete">&nbsp;</span>, on <span class="form-entry not-complete"></span>, and on hearing <span class="form-entry not-complete">&nbsp;</span>, [<em>add the following if applicable: the lawyer for</em>] claimant 1 and <span class="form-entry not-complete">&nbsp;</span>,
[<em>add the following if applicable: the lawyer for</em>] claimant 2, and on considering the evidence put forward [<em>add the following if applicable:</em> AND JUDGMENT being reserved to this date];
</p>
<p class="schIndent1">
<p>
This family law case coming on for hearing at <span class="form-entry not-complete">&nbsp;</span> on <span class="form-entry not-complete"></span> and on hearing <span class="form-entry not-complete"></span> and <span class="form-entry not-complete"></span>,
and on considering the evidence put forward;
</p>
<p class="schIndent1">
<p>
This family law case coming on for summary trial under Rule 11-3 of the Supreme Court Family Rules at <span class="form-entry not-complete">&nbsp;</span> on <span class="form-entry not-complete"></span>, and on hearing <span class="form-entry not-complete"></span> and <span class="form-entry not-complete"></span>,
and on considering the evidence put forward;
</p>
</div>
{% endcomment %}
<p class="schIndent1">
This family law case coming on as an undefended family law case without an oral hearing under Rule 10-10 of the Supreme Court Family Rules, and on considering the evidence put forward;
<p>
This family law case coming on as an undefended family law case
without an oral hearing under Rule 10-10 of the Supreme Court
Family Rules, and on considering the evidence put forward;
</p>
{% if 'A legal end to the marriage' in responses.want_which_orders|load_json %}
<p>
THIS COURT ORDERS that
</p>
<p>THIS COURT ORDERS that</p>
<p class="schIndent1">
Subject to section 12 of the <em>Divorce Act</em> (Canada), claimant 1, {% if responses.name_you %}{% include "partials/name_with_alias.html" with name=responses.name_you use_other_name=responses.any_other_name_you other_names=responses.other_name_you %}{% else %}<span class="form-entry not-complete"></span>{% endif %},
and claimant 2, {% if responses.name_spouse %}{% include "partials/name_with_alias.html" with name=responses.name_spouse use_other_name=responses.any_other_name_spouse other_names=responses.other_name_spouse %}{% else %}<span class="form-entry not-complete"></span>{% endif %}, who were married at
<p>
Subject to section 12 of the <em>Divorce Act</em> (Canada), claimant 1,
{% if responses.name_you %}{% include "partials/name_with_alias.html" with name=responses.name_you use_other_name=responses.any_other_name_you other_names=responses.other_name_you %}{% else %}<span class="form-entry not-complete"></span>{% endif %},
and claimant 2,
{% if responses.name_spouse %}{% include "partials/name_with_alias.html" with name=responses.name_spouse use_other_name=responses.any_other_name_spouse other_names=responses.other_name_spouse %}{% else %}<span class="form-entry not-complete"></span>{% endif %},
who were married at
{% if responses.where_were_you_married_city and responses.where_were_you_married_country %}
{{responses.where_were_you_married_city}},
{% required responses.where_were_you_married_city %},
{% if responses.where_were_you_married_prov %}{{responses.where_were_you_married_prov}},{% endif %}
{% if responses.where_were_you_married_country == 'Other' %}
{{ responses.where_were_you_married_other_country }}
{% required responses.where_were_you_married_other_country %}
{% else %}
{{responses.where_were_you_married_country}}
{% required responses.where_were_you_married_country %}
{% endif %}
{% else %}<span class="form-entry not-complete"></span>{% endif %}
on {% if responses.when_were_you_married %} {{ responses.when_were_you_married|date_formatter }} {% else %}<span class="form-entry not-complete"></span>{% endif %}, are divorced from each other,
the divorce to take effect on {% effective_date %}.
on
{% if responses.when_were_you_married %}
{{ responses.when_were_you_married|date_formatter }}
{% else %}<span class="form-entry not-complete"></span>{% endif %},
are divorced from each other, the divorce to take effect on
{% effective_date %}.
</p>
{% endif %}


Loading…
Cancel
Save