Browse Source

DIV-112 updated balance of templates with new design

pull/160/head
Foley Lynn 8 years ago
parent
commit
41c828f5e0
22 changed files with 1484 additions and 1672 deletions
  1. +1
    -1
      edivorce/apps/core/static/css/main.css
  2. +9
    -1
      edivorce/apps/core/static/css/main.scss
  3. +33
    -41
      edivorce/apps/core/templates/intro.html
  4. +5
    -11
      edivorce/apps/core/templates/login.html
  5. +64
    -80
      edivorce/apps/core/templates/overview.html
  6. +43
    -49
      edivorce/apps/core/templates/prequalification/step_01.html
  7. +2
    -8
      edivorce/apps/core/templates/prequalification/step_02.html
  8. +99
    -105
      edivorce/apps/core/templates/prequalification/step_03.html
  9. +66
    -72
      edivorce/apps/core/templates/prequalification/step_04.html
  10. +156
    -162
      edivorce/apps/core/templates/prequalification/step_05.html
  11. +122
    -134
      edivorce/apps/core/templates/prequalification/step_06.html
  12. +116
    -122
      edivorce/apps/core/templates/question/01_orders.html
  13. +123
    -155
      edivorce/apps/core/templates/question/02_claimant.html
  14. +152
    -168
      edivorce/apps/core/templates/question/03_respondent.html
  15. +0
    -1
      edivorce/apps/core/templates/question/04_marriage.html
  16. +63
    -74
      edivorce/apps/core/templates/question/05_separation.html
  17. +122
    -132
      edivorce/apps/core/templates/question/06_support.html
  18. +127
    -155
      edivorce/apps/core/templates/question/07_property.html
  19. +14
    -19
      edivorce/apps/core/templates/question/08_other_orders.html
  20. +79
    -84
      edivorce/apps/core/templates/question/09_other_questions.html
  21. +36
    -40
      edivorce/apps/core/templates/question/10_location.html
  22. +52
    -58
      edivorce/apps/core/templates/question/11_review.html

+ 1
- 1
edivorce/apps/core/static/css/main.css
File diff suppressed because it is too large
View File


+ 9
- 1
edivorce/apps/core/static/css/main.scss View File

@ -150,7 +150,7 @@ a {
} }
} }
span.toolip {
.tooltip-link {
color: $brand-titles; color: $brand-titles;
border-bottom: dotted 1px $brand-titles; border-bottom: dotted 1px $brand-titles;
cursor: pointer; cursor: pointer;
@ -333,6 +333,14 @@ input {
} }
} }
textarea {
width: 100%;
border-radius: 10px;
color: #494949;
padding: 12px 15px;
border: solid 1px $color-grey-light;
line-height: 1em;
}
// Customizations // Customizations


+ 33
- 41
edivorce/apps/core/templates/intro.html View File

@ -3,48 +3,40 @@
{% block title %}{{ block.super }}: Intro{% endblock %} {% block title %}{{ block.super }}: Intro{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Let us guide you through the divorce process</h1>
<p>This online Divorce Assistantance tool will help you determine the forms you will need to assemble,
and the tasks you will need to complete, in order to complete your divorce.</p>
<h3>How it works</h3>
<p><b>1. Answer Questions</b>
<br>
Filling out our secure online questionnaire is completely free. Your work is saved so you can
proceed at your own pace.
</p>
<p><b>2. Print Your Forms</b>
<br>
Print your papers and file at your local court registry. That's all there is to it!
</p>
<div class="information-message bg-danger">
<p>
Please note: at this point in time we cannot offer online submission (like your taxes)
so you will need to print off your forms and take them to a court registry.
</p>
</div>
<h2 style="text-decoration: underline">
<a href="{% url 'prequalification' '01' %}">New User - Let's Get Started</a>
</h2>
<h2 style="text-decoration: underline">
<a href="{% url 'login' %}">Returning User - Login with BCeID</a>
</h2>
</div>
</div>
</div>
<h1>Let us guide you through the divorce process</h1>
<p>This online Divorce Assistantance tool will help you determine the forms you will need to assemble,
and the tasks you will need to complete, in order to complete your divorce.</p>
<h3>How it works</h3>
<p><b>1. Answer Questions</b>
<br>
Filling out our secure online questionnaire is completely free. Your work is saved so you can
proceed at your own pace.
</p>
<p><b>2. Print Your Forms</b>
<br>
Print your papers and file at your local court registry. That's all there is to it!
</p>
<div class="information-message bg-danger">
<p>
Please note: at this point in time we cannot offer online submission (like your taxes)
so you will need to print off your forms and take them to a court registry.
</p>
</div> </div>
<h2 style="text-decoration: underline">
<a href="{% url 'prequalification' '01' %}">New User - Let's Get Started</a>
</h2>
<h2 style="text-decoration: underline">
<a href="{% url 'login' %}">Returning User - Login with BCeID</a>
</h2>
{% endblock %} {% endblock %}
{% block sidebar %} {% block sidebar %}


+ 5
- 11
edivorce/apps/core/templates/login.html View File

@ -3,17 +3,11 @@
{% block title %}{{ block.super }}: Login{% endblock %} {% block title %}{{ block.super }}: Login{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<form action="{% url 'overview' %}">
<input type="submit" value="Log-in"/>
</form>
</div>
</div>
</div>
</div>
<form action="{% url 'overview' %}">
<input type="submit" value="Log-in"/>
</form>
{% endblock %} {% endblock %}
{% block sidebar %} {% block sidebar %}


+ 64
- 80
edivorce/apps/core/templates/overview.html View File

@ -3,87 +3,71 @@
{% block title %}{{ block.super }}: Overview{% endblock %} {% block title %}{{ block.super }}: Overview{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div>
<ul>
<li>
<h2>Your Information</h2>
<div>
<ul>
<li style="display: flex"><a href="{% url 'prequalification' '01' %}">Qualifying Questions</a><p style="margin-left: 90px">{{prequalification}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '01_orders' %}">Step 1: What are you asking for?</a><p style="margin-left: 90px">{{which_orders}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '02_claimant' %}">Step 2: Your information</a><p style="margin-left: 90px">{{your_information}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '03_respondent' %}">Step 3: Your spouse</a><p style="margin-left: 90px">{{your_spouse}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '04_marriage' %}">Step 4: Your marriage</a><p style="margin-left: 90px">{{your_marriage}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '05_separation' %}">Step 5: Your separation</a><p style="margin-left: 90px">{{your_separation}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '06_support' %}">Step 6: Spousal support</a><p style="margin-left: 90px">{{spousal_support}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '07_property' %}">Step 7: Property and debt</a><p style="margin-left: 90px">{{property_and_debt}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '08_other_orders' %}">Step 8: Other orders</a><p style="margin-left: 90px">{{other_orders}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '09_other_questions' %}">Step 9: Other questions</a><p style="margin-left: 90px">{{other_questions}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '10_location' %}">Step 10: Filing locations</a><p style="margin-left: 90px">{{filing_locations}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '11_review' %}">Step 11: Review</a></li>
</ul>
</div>
</li>
<li>
<h2>Prepare your forms</h2>
<div>
<ul>
<li>
<p>
Notice of Joint Family Claim(F1)
<a href="{% url 'pdf_form' '1' %}?html">Preview</a> |
<a href="{% url 'pdf_form' '1' %}">Print</a>
</p>
</li>
<li>
<p>
Original Marriage Certificate or Registration of Marriage
<a href="#">Preview</a> |
<a href="#">Print</a>
</p>
</li>
<li>
<p>
Requisition (Form F35)
<a href="{% url 'pdf_form' '35' %}?html">Preview</a> |
<a href="{% url 'pdf_form' '35' %}">Print</a>
</p>
</li>
<li>
<p>
Draft Final Order (Form F52)
<a href="{% url 'pdf_form' '52' %}?html">Preview</a> |
<a href="{% url 'pdf_form' '52' %}">Print</a>
</p>
</li>
<li>
<p>
Certificate of Pleadings (F36)
<a href="{% url 'pdf_form' '36' %}?html">Preview</a> |
<a href="{% url 'pdf_form' '36' %}">Print</a>
</p>
</li>
<li>
<p>
Affidavit Desk Order Divorce (F38)
<a href="{% url 'pdf_form' '38' %}?html">Preview</a> |
<a href="{% url 'pdf_form' '38' %}">Print</a>
</p>
</li>
</ul>
</div>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<h2>Your Information</h2>
<ul>
<li style="display: flex"><a href="{% url 'prequalification' '01' %}">Qualifying Questions</a><p style="margin-left: 90px">{{prequalification}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '01_orders' %}">Step 1: What are you asking for?</a><p style="margin-left: 90px">{{which_orders}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '02_claimant' %}">Step 2: Your information</a><p style="margin-left: 90px">{{your_information}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '03_respondent' %}">Step 3: Your spouse</a><p style="margin-left: 90px">{{your_spouse}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '04_marriage' %}">Step 4: Your marriage</a><p style="margin-left: 90px">{{your_marriage}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '05_separation' %}">Step 5: Your separation</a><p style="margin-left: 90px">{{your_separation}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '06_support' %}">Step 6: Spousal support</a><p style="margin-left: 90px">{{spousal_support}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '07_property' %}">Step 7: Property and debt</a><p style="margin-left: 90px">{{property_and_debt}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '08_other_orders' %}">Step 8: Other orders</a><p style="margin-left: 90px">{{other_orders}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '09_other_questions' %}">Step 9: Other questions</a><p style="margin-left: 90px">{{other_questions}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '10_location' %}">Step 10: Filing locations</a><p style="margin-left: 90px">{{filing_locations}}</p></li>
<li style="display: flex"><a href="{% url 'question_steps' '11_review' %}">Step 11: Review</a></li>
</ul>
<h2>Prepare your forms</h2>
<ul>
<li>
<p>
Notice of Joint Family Claim(F1)
<a href="{% url 'pdf_form' '1' %}?html">Preview</a> |
<a href="{% url 'pdf_form' '1' %}">Print</a>
</p>
</li>
<li>
<p>
Original Marriage Certificate or Registration of Marriage
<a href="#">Preview</a> |
<a href="#">Print</a>
</p>
</li>
<li>
<p>
Requisition (Form F35)
<a href="{% url 'pdf_form' '35' %}?html">Preview</a> |
<a href="{% url 'pdf_form' '35' %}">Print</a>
</p>
</li>
<li>
<p>
Draft Final Order (Form F52)
<a href="{% url 'pdf_form' '52' %}?html">Preview</a> |
<a href="{% url 'pdf_form' '52' %}">Print</a>
</p>
</li>
<li>
<p>
Certificate of Pleadings (F36)
<a href="{% url 'pdf_form' '36' %}?html">Preview</a> |
<a href="{% url 'pdf_form' '36' %}">Print</a>
</p>
</li>
<li>
<p>
Affidavit Desk Order Divorce (F38)
<a href="{% url 'pdf_form' '38' %}?html">Preview</a> |
<a href="{% url 'pdf_form' '38' %}">Print</a>
</p>
</li>
</ul>
{% endblock %} {% endblock %}
{% block sidebar %} {% block sidebar %}


+ 43
- 49
edivorce/apps/core/templates/prequalification/step_01.html View File

@ -4,61 +4,55 @@
{% block title %}{{ block.super }}: Prequalification{% endblock %} {% block title %}{{ block.super }}: Prequalification{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Do you qualify for a divorce in BC?</h1>
<p>Let's start off with a few questions about your situation to make sure that this online divorce tool can
work for you.</p>
<h3>Are you</h3>
<div class="radio"><label>
{% input_field type="radio" name="married_marriage_like" value="Legally married" %}
Legally married<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right"
data-html="true"
title="<b>LEGALLY MARRIED</b><br /><br />Legally married is defined as: when two people agree
to live together in a partnership made legally binding by a religous or legal ceremony.<br /><br />
To prove you were legally married you will need to provide a marriage certificate issued in the country
where you were married."
aria-hidden="true"></i></label>
</div>
<h1>Do you qualify for a divorce in BC?</h1>
<div class="radio"><label>
{% input_field type="radio" name="married_marriage_like" value="Living together in a marriage like relationship" %}
Living together in a marriage like<i class="fa fa-question-circle" data-toggle="tooltip"
data-placement="right" data-html="true"
title="<b>MARRIAGE LIKE RELATIONSHIP</b><br /><br />The term &quot;common-law relationship&quot;
is often used to refer to a marriage-like relationship that has lasted a certain length of time,
usually one or two years. Used in some federal laws to refer to a marriage-like relationship of
a year or longer." aria-hidden="true"></i> (also know as common law) relationship</label>
</div>
<p>Let's start off with a few questions about your situation to make sure that this online divorce tool can
work for you.</p>
<h3>Are you</h3>
<div class="radio"><label>
{% input_field type="radio" name="married_marriage_like" value="Legally married" %}
Legally married<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right"
data-html="true"
title="<b>LEGALLY MARRIED</b><br /><br />Legally married is defined as: when two people agree
to live together in a partnership made legally binding by a religous or legal ceremony.<br /><br />
To prove you were legally married you will need to provide a marriage certificate issued in the country
where you were married."
aria-hidden="true"></i></label>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="true" data-target="#collapse_lived_two_years" aria-controls="collapse_lived_two_year">
<div>
If I have lived with my spouse for at least two years, are we married?
</div>
</div>
<div class="collapse" id="collapse_lived_two_years">
<div>
<p>No, you aren't married, but after two years, you have a lot of the same rights as a married
couple would. And some federal benefits treat you as married spouse if you've been living together for one
year. For more information refer to the booklet called
<a href="http://www.familylaw.lss.bc.ca/resources/publications/pub.php?pub=347" target="_blank">
Living Together or Living Apart: Common-Law Relationships, Marriage, Separation and Divorce</a>,
on the Legal Services Society website.</p>
</div>
</div>
<div class="radio"><label>
{% input_field type="radio" name="married_marriage_like" value="Living together in a marriage like relationship" %}
Living together in a marriage like<i class="fa fa-question-circle" data-toggle="tooltip"
data-placement="right" data-html="true"
title="<b>MARRIAGE LIKE RELATIONSHIP</b><br /><br />The term &quot;common-law relationship&quot;
is often used to refer to a marriage-like relationship that has lasted a certain length of time,
usually one or two years. Used in some federal laws to refer to a marriage-like relationship of
a year or longer." aria-hidden="true"></i> (also know as common law) relationship</label>
</div>
<div class="next-button">
<form action="{% url 'prequalification' '02' %}">
<input type="submit" value="Next"/>
</form>
</div>
</div>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="true" data-target="#collapse_lived_two_years" aria-controls="collapse_lived_two_year">
<div>
If I have lived with my spouse for at least two years, are we married?
</div>
</div>
<div class="collapse" id="collapse_lived_two_years">
<div>
<p>No, you aren't married, but after two years, you have a lot of the same rights as a married
couple would. And some federal benefits treat you as married spouse if you've been living together for one
year. For more information refer to the booklet called
<a href="http://www.familylaw.lss.bc.ca/resources/publications/pub.php?pub=347" target="_blank">
Living Together or Living Apart: Common-Law Relationships, Marriage, Separation and Divorce</a>,
on the Legal Services Society website.</p>
</div> </div>
</div> </div>
<div class="next-button">
<form action="{% url 'prequalification' '02' %}">
<input type="submit" value="Next"/>
</form>
</div>
{% endblock %} {% endblock %}
{% block sidebar %} {% block sidebar %}


+ 2
- 8
edivorce/apps/core/templates/prequalification/step_02.html View File

@ -4,10 +4,7 @@
{% block title %}{{ block.super }}: Prequalification{% endblock %} {% block title %}{{ block.super }}: Prequalification{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Do you qualify for a divorce in BC?</h1> <h1>Do you qualify for a divorce in BC?</h1>
<div> <div>
<h3>Do you or your spouse live in British Columbia?</h3> <h3>Do you or your spouse live in British Columbia?</h3>
@ -77,10 +74,7 @@
<form action="{% url 'prequalification' '03' %}"> <form action="{% url 'prequalification' '03' %}">
<input type="submit" value="Next"/> <input type="submit" value="Next"/>
</form> </form>
</div>
</div>
</div>
</div>
{% endblock %} {% endblock %}
{% block sidebarText%} {% block sidebarText%}
<h2>Ordinarily Resident</h2> <h2>Ordinarily Resident</h2>


+ 99
- 105
edivorce/apps/core/templates/prequalification/step_03.html View File

@ -4,123 +4,117 @@
{% block title %}{{ block.super }}: Prequalification{% endblock %} {% block title %}{{ block.super }}: Prequalification{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div>
<h3>When did you and your spouse separate (legally this is referred to as living separate and apart)
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Living separate and apart</b><br /><br /><p>You or your spouse have decided to end the marriage. In general one separates by moving out.
However it is possible to be separated but still live under the same roof as long as either you our your spouse,
have clearly communicated your intention for a permanent separation (and are starting to act upon it).</p>
<p>This could mean:</p><ul><li>You're living in separate rooms</li><li>You're sleeping in separate beds</li><li>There's no sexual relationship</li>" aria-hidden="true"></i>?
</h3>
<p><span class="date-picker-group">{% input_field type="text" name="separation_date" class="date-picker" id="separated_date" placeholder="DD/MM/YYYY" %} <i class="fa fa-calendar circle" aria-hidden="true"></i></span></p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_determine_separation_date" aria-controls="collapse_determine_separation_date">
<div>
How do I determine the separation date?
</div>
</div>
<div class="collapse" id="collapse_determine_separation_date">
<div>
<p>Starts when one spouse decides that things have come to an end/the relationship is over, and then act on the decision.</p>
<div class="question-well">
<h3>When did you and your spouse separate (legally this is referred to as living separate and apart)
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Living separate and apart</b><br /><br /><p>You or your spouse have decided to end the marriage. In general one separates by moving out.
However it is possible to be separated but still live under the same roof as long as either you our your spouse,
have clearly communicated your intention for a permanent separation (and are starting to act upon it).</p>
<p>This could mean:</p><ul><li>You're living in separate rooms</li><li>You're sleeping in separate beds</li><li>There's no sexual relationship</li>" aria-hidden="true"></i>?
</h3>
<p><span class="date-picker-group">{% input_field type="text" name="separation_date" class="date-picker" id="separated_date" placeholder="DD/MM/YYYY" %} <i class="fa fa-calendar circle" aria-hidden="true"></i></span></p>
<p>
There is no such thing as a "legal separation." If you're married or in a common-law relationship,
you become separated as soon as you and your spouse start living apart with at least one of you wanting to separate.
You don't need your spouse's permission to start living separately. You can tell others that you wish to separate,
but you don't have to see a lawyer, sign a document, or go to court to be separated.
</p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_determine_separation_date" aria-controls="collapse_determine_separation_date">
<div>
How do I determine the separation date?
</div>
</div>
<div class="collapse" id="collapse_determine_separation_date">
<div>
<p>Starts when one spouse decides that things have come to an end/the relationship is over, and then act on the decision.</p>
<p>
You might even still live in the same house to save money, but you're usually still considered separated
if you don't share things like meals, a bedroom, and social activities.
</p>
</div>
</div>
<p>
There is no such thing as a "legal separation." If you're married or in a common-law relationship,
you become separated as soon as you and your spouse start living apart with at least one of you wanting to separate.
You don't need your spouse's permission to start living separately. You can tell others that you wish to separate,
but you don't have to see a lawyer, sign a document, or go to court to be separated.
</p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_exact_date" aria-controls="collapse_exact_date">
<div>
What do I do if I can't remember the exact date?
</div>
</div>
<div class="collapse" id="collapse_exact_date">
<div>
<p>If you cannot remember the exact date you separated then enter:</p>
<ul>
<li>the last day of that month in which you decided to separate from your spouse, and;</li>
<li>year</li>
</ul>
</div>
</div>
</div>
<p>
You might even still live in the same house to save money, but you're usually still considered separated
if you don't share things like meals, a bedroom, and social activities.
</p>
</div>
</div>
<div class="information-message bg-danger" id="separation_date_alert" hidden>
<p>
The date you entered indicates you've been separated for less than one year You can use this online tool to start working
on the divorce forms, however you will not be able to file your documents at the registry until
the one year separation period has passed.
</p>
<p>Under the Divorce Act, a divorce may be granted on one of three grounds:</p>
<ul>
<li>intentional separation for more than one year</li>
<li>adultery</li>
<li>physical or mental cruelty</li>
</ul>
<p>
Most divorces are granted on the basis of intentional separation for more than a year.
It's possible to get a divorce more quickly by basing it on the grounds of either adultery or physical or mental cruelty.
However, you must be able to prove the adultery or cruelty. It's best to talk to a lawyer before deciding to seek a divorce
on grounds other than separation.
</p>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_exact_date" aria-controls="collapse_exact_date">
<div>
What do I do if I can't remember the exact date?
</div>
</div>
<div class="collapse" id="collapse_exact_date">
<div>
<p>If you cannot remember the exact date you separated then enter:</p>
<ul>
<li>the last day of that month in which you decided to separate from your spouse, and;</li>
<li>year</li>
</ul>
</div>
</div>
</div>
<div>
<h3>Did you and {% if name_spouse %} {{ name_spouse }} {% else %} your spouse {% endif %} try and reconcile after you separated <span id="separation_date_span"></span>?</h3>
<div class="radio"><label>{% input_field type="radio" name="try_reconcile_after_separated" value="NO" %}
No, {% if name_spouse %} {{ name_spouse }} {% else %} my spouse {% endif %} and I have not reconciled (gotten back together)</label>
</div>
<div class="radio"><label>{% input_field type="radio" name="try_reconcile_after_separated" value="YES" %}
Yes, {% if name_spouse %} {{ name_spouse }} {% else %} my spouse {% endif %} and I lived together again during the following period(s) in an unsuccessful attempt to reconcile</label>
</div>
<div class="information-message bg-danger" id="separation_date_alert" hidden>
<p>
The date you entered indicates you've been separated for less than one year You can use this online tool to start working
on the divorce forms, however you will not be able to file your documents at the registry until
the one year separation period has passed.
</p>
<p>Under the Divorce Act, a divorce may be granted on one of three grounds:</p>
<ul>
<li>intentional separation for more than one year</li>
<li>adultery</li>
<li>physical or mental cruelty</li>
</ul>
<p>
Most divorces are granted on the basis of intentional separation for more than a year.
It's possible to get a divorce more quickly by basing it on the grounds of either adultery or physical or mental cruelty.
However, you must be able to prove the adultery or cruelty. It's best to talk to a lawyer before deciding to seek a divorce
on grounds other than separation.
</p>
</div>
<!-- TODO: Dev note: If reconciliation period is greater than 90 days, display Alert message in column F -->
<!-- TODO: Add multiple date adding fields -->
<div>
<div class="information-message bg-danger" hidden>
<p>Based on the date(s) you have provided for reconciliation, we have detected that your reconciliation may be for a period of greater than 90 days. Within the one year separation period, you can only live together for 90 days or less. </p>
<p>You can still proceed to complete the application, however, it will be up to the court to decide if you have lived separate and apart for the required period of one year.</p>
<!-- TODO: Talk to a lawyer links to help centre page. -->
<p>You may want to talk to a lawyer regarding your legal rights and options. </p>
</div>
</div>
<div class="question-well">
<h3>Did you and {% if name_spouse %} {{ name_spouse }} {% else %} your spouse {% endif %} try and reconcile after you separated <span id="separation_date_span"></span>?</h3>
<div class="radio"><label>{% input_field type="radio" name="try_reconcile_after_separated" value="NO" %}
No, {% if name_spouse %} {{ name_spouse }} {% else %} my spouse {% endif %} and I have not reconciled (gotten back together)</label>
</div>
<div class="radio"><label>{% input_field type="radio" name="try_reconcile_after_separated" value="YES" %}
Yes, {% if name_spouse %} {{ name_spouse }} {% else %} my spouse {% endif %} and I lived together again during the following period(s) in an unsuccessful attempt to reconcile</label>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_reconcile_not_work" aria-controls="collapse_reconcile_not_work">
<div>
What happens if my spouse and I tried to get back together for a short time but it did not work out?
</div>
</div>
<div class="collapse" id="collapse_reconcile_not_work">
<div>
<p>
Spouses that are separated can get back together and live together again to try and make the marriage work.
But within the one-year separation period, they can only live together for a total of 90 days or less.
If they live together for more than 90 days, the one-year period of separation starts all over again from the date of the last separation.
For more information on separation, refer to script 115 on “Separation and Separation Agreements”.
</p>
</div>
</div>
</div>
<!-- TODO: Dev note: If reconciliation period is greater than 90 days, display Alert message in column F -->
<!-- TODO: Add multiple date adding fields -->
<div>
<div class="information-message bg-danger" hidden>
<p>Based on the date(s) you have provided for reconciliation, we have detected that your reconciliation may be for a period of greater than 90 days. Within the one year separation period, you can only live together for 90 days or less. </p>
<p>You can still proceed to complete the application, however, it will be up to the court to decide if you have lived separate and apart for the required period of one year.</p>
<!-- TODO: Talk to a lawyer links to help centre page. -->
<p>You may want to talk to a lawyer regarding your legal rights and options. </p>
</div>
</div>
<form action="{% url 'prequalification' '04' %}">
<input type="submit" value="Next"/>
</form>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_reconcile_not_work" aria-controls="collapse_reconcile_not_work">
<div>
What happens if my spouse and I tried to get back together for a short time but it did not work out?
</div>
</div>
<div class="collapse" id="collapse_reconcile_not_work">
<div>
<p>
Spouses that are separated can get back together and live together again to try and make the marriage work.
But within the one-year separation period, they can only live together for a total of 90 days or less.
If they live together for more than 90 days, the one-year period of separation starts all over again from the date of the last separation.
For more information on separation, refer to script 115 on “Separation and Separation Agreements”.
</p>
</div> </div>
</div> </div>
</div> </div>
<form action="{% url 'prequalification' '04' %}">
<input type="submit" value="Next"/>
</form>
{% endblock %} {% endblock %}
{% block sidebarText%} {% block sidebarText%}
<p>When two people who have been living together in a marriage, or a marriage-like relationship (sometimes called a common-law relationship), decide not to live together any more, they are separated.</p> <p>When two people who have been living together in a marriage, or a marriage-like relationship (sometimes called a common-law relationship), decide not to live together any more, they are separated.</p>


+ 66
- 72
edivorce/apps/core/templates/prequalification/step_04.html View File

@ -4,89 +4,83 @@
{% block title %}{{ block.super }}: Prequalification{% endblock %} {% block title %}{{ block.super }}: Prequalification{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h3>Do you and your spouse have any children (includes step children, adopted children). The legal term is children of the marriage
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="bottom" data-html="true"
title="<b>Children for the Marriage</b><br/><br/> The
<a href=&quot;http://wiki.clicklaw.bc.ca/index.php?title=Divorce Act&quot;>Divorce Act</a> defines child of the marriage as:
Child of the marriage means a child of two spouses or former spouses who, at the material time,<ol type=&quot;a&quot;>
<li>is under the age of majority and who has not withdrawn from their charge, or</li>
<li>is the age of majority or over and under their charge but unable, by reason of illness, disability
or other cause, to withdraw from their charge or to obtain the necessaries of life; (enfant à charge)?</li></ol>
More details on the
<a href=&quot;http://www.justice.gc.ca/eng/rp-pr/fl-lf/child-enfant/rp/v2/v2_7.html&quot;>definition of &quot;child of the marriage&quot;</a>
can be found on the Department of Justice web site." aria-hidden="true"></i>?</h3>
<div class="btn-radio-group" data-toggle="buttons">
<label class="btn btn-radio">
{% input_field type="radio" name="children_of_marriage" autocomplete="off" value="YES" data_target_id="has_children" data_reveal_target="true" %} Yes
</label>
<h3>Do you and your spouse have any children (includes step children, adopted children). The legal term is children of the marriage
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="bottom" data-html="true"
title="<b>Children for the Marriage</b><br/><br/> The
<a href=&quot;http://wiki.clicklaw.bc.ca/index.php?title=Divorce Act&quot;>Divorce Act</a> defines child of the marriage as:
Child of the marriage means a child of two spouses or former spouses who, at the material time,<ol type=&quot;a&quot;>
<li>is under the age of majority and who has not withdrawn from their charge, or</li>
<li>is the age of majority or over and under their charge but unable, by reason of illness, disability
or other cause, to withdraw from their charge or to obtain the necessaries of life; (enfant à charge)?</li></ol>
More details on the
<a href=&quot;http://www.justice.gc.ca/eng/rp-pr/fl-lf/child-enfant/rp/v2/v2_7.html&quot;>definition of &quot;child of the marriage&quot;</a>
can be found on the Department of Justice web site." aria-hidden="true"></i>?</h3>
<label class="btn btn-radio">
{% input_field type="radio" name="children_of_marriage" autocomplete="off" value="NO" data_target_id="has_children" data_reveal_target="false" %} No
</label>
</div>
<div class="btn-radio-group" data-toggle="buttons">
<label class="btn btn-radio">
{% input_field type="radio" name="children_of_marriage" autocomplete="off" value="YES" data_target_id="has_children" data_reveal_target="true" %} Yes
</label>
<p><em>If you had children with your spouse, but the children are over
the age of majority (19 in British Columbia) and independent, they are
no longer considered ‘children of the marriage’ under the Divorce
Act, and you do not need to include their information in your
divorce documents. Or, if you wish, you can name them in your
documents, and indicate that they are over 19 and independent,
and no longer requiring support.</em></p>
<label class="btn btn-radio">
{% input_field type="radio" name="children_of_marriage" autocomplete="off" value="NO" data_target_id="has_children" data_reveal_target="false" %} No
</label>
</div>
<p><em>If you had children with your spouse, but the children are over
the age of majority (19 in British Columbia) and independent, they are
no longer considered ‘children of the marriage’ under the Divorce
Act, and you do not need to include their information in your
divorce documents. Or, if you wish, you can name them in your
documents, and indicate that they are over 19 and independent,
and no longer requiring support.</em></p>
<div class="reveal" id="has_children" hidden>
<h3>Are any of the children 19 years or younger?</h3>
<div class="reveal" id="has_children" hidden>
<h3>Are any of the children 19 years or younger?</h3>
<div class="btn-radio-group" data-toggle="buttons">
<label class="btn btn-radio">
{% input_field type="radio" name="any_under_19" autocomplete="off" value="YES" data_target_id="younger_19" data_reveal_target="true" data_related_id="financial_support" %} Yes
</label>
<div class="btn-radio-group" data-toggle="buttons">
<label class="btn btn-radio">
{% input_field type="radio" name="any_under_19" autocomplete="off" value="YES" data_target_id="younger_19" data_reveal_target="true" data_related_id="financial_support" %} Yes
</label>
<label class="btn btn-radio">
{% input_field type="radio" name="any_under_19" autocomplete="off" value="NO" data_target_id="younger_19" data_reveal_target="false" data_related_id="financial_support" %} No
</label>
</div>
<label class="btn btn-radio">
{% input_field type="radio" name="any_under_19" autocomplete="off" value="NO" data_target_id="younger_19" data_reveal_target="false" data_related_id="financial_support" %} No
</label>
</div>
<div class="information-message bg-danger" id="younger_19" hidden>
<p>Sorry but at this point in time you will need to complete your application for divorce using the
Supreme Court of B.C. forms (PDF). The
<a href="http://www.ag.gov.bc.ca/courts/other/supreme/2010SupRules/info/index_family.htm" target="_blank">forms</a>
can be found on the Court Services Branch web site: Supreme Court - Provincial Court.</p>
<p>A <a href="http://www.familylaw.lss.bc.ca/guides/divorce/divJoint_courtForms.php" target="_blank">listing of forms</a>
that may be required for a Joint Divorce can also be found on the Legal Services Society web site.</p>
</div>
<div class="information-message bg-danger" id="younger_19" hidden>
<p>Sorry but at this point in time you will need to complete your application for divorce using the
Supreme Court of B.C. forms (PDF). The
<a href="http://www.ag.gov.bc.ca/courts/other/supreme/2010SupRules/info/index_family.htm" target="_blank">forms</a>
can be found on the Court Services Branch web site: Supreme Court - Provincial Court.</p>
<p>A <a href="http://www.familylaw.lss.bc.ca/guides/divorce/divJoint_courtForms.php" target="_blank">listing of forms</a>
that may be required for a Joint Divorce can also be found on the Legal Services Society web site.</p>
</div>
<div class="reveal" id="financial_support" hidden>
<h3>Are you financially supporting any of the children that are 19 years or older? Please check all that apply.</h3>
<div class="checkbox-group">
<div class="checkbox"><label>{% input_field type="checkbox" name="children_financial_support" value="No" data_target_id="need_support" data_reveal_target="false" %}No</label></div>
<div class="checkbox"><label>{% input_field type="checkbox" name="children_financial_support" value="Yes, attending post secondary institution (e.g. college, university)" data_target_id="need_support" data_reveal_target="true" %}Yes, attending post secondary institution (e.g. college, university)</label></div>
<div class="checkbox"><label>{% input_field type="checkbox" name="children_financial_support" value="Yes, due to disability" data_target_id="need_support" data_reveal_target="true" %}Yes, due to disability</label></div>
<div class="checkbox"><label>{% input_field type="checkbox" name="children_financial_support" value="Yes, due to illness" data_target_id="need_support" data_reveal_target="true" %}Yes, due to illness</label></div>
<div class="checkbox"><label>{% input_field type="checkbox" name="children_financial_support" value="Yes, other reason" data_target_id="need_support" data_reveal_target="true" %}Yes, other reason(s)</label></div>
</div>
<div class="information-message bg-danger" id="need_support" hidden>
<p>Sorry but at this point in time you will not be able to complete your application for divorce using this online tool.
Currently the tool supports a limited number of scenarios. In the meantime, you can file for divorce using the
<a href="http://www.ag.gov.bc.ca/courts/other/supreme/2010SupRules/info/index_family.htm" target="_blank">forms</a>
provided on the Supreme Court of B.C. website. (PDF).</p>
<p>A <a href="http://www.familylaw.lss.bc.ca/guides/divorce/divJoint_courtForms.php" target="_blank">listing of forms</a>
that may be required for a Joint Divorce, as well as an overview of the divorce process,
can be found on the Legal Services Society web site.</p>
</div>
</div>
</div>
<form action="{% url 'prequalification' '05' %}">
<input type="submit" value="Next"/>
</form>
</div>
<div class="reveal" id="financial_support" hidden>
<h3>Are you financially supporting any of the children that are 19 years or older? Please check all that apply.</h3>
<div class="checkbox-group">
<div class="checkbox"><label>{% input_field type="checkbox" name="children_financial_support" value="No" data_target_id="need_support" data_reveal_target="false" %}No</label></div>
<div class="checkbox"><label>{% input_field type="checkbox" name="children_financial_support" value="Yes, attending post secondary institution (e.g. college, university)" data_target_id="need_support" data_reveal_target="true" %}Yes, attending post secondary institution (e.g. college, university)</label></div>
<div class="checkbox"><label>{% input_field type="checkbox" name="children_financial_support" value="Yes, due to disability" data_target_id="need_support" data_reveal_target="true" %}Yes, due to disability</label></div>
<div class="checkbox"><label>{% input_field type="checkbox" name="children_financial_support" value="Yes, due to illness" data_target_id="need_support" data_reveal_target="true" %}Yes, due to illness</label></div>
<div class="checkbox"><label>{% input_field type="checkbox" name="children_financial_support" value="Yes, other reason" data_target_id="need_support" data_reveal_target="true" %}Yes, other reason(s)</label></div>
</div>
<div class="information-message bg-danger" id="need_support" hidden>
<p>Sorry but at this point in time you will not be able to complete your application for divorce using this online tool.
Currently the tool supports a limited number of scenarios. In the meantime, you can file for divorce using the
<a href="http://www.ag.gov.bc.ca/courts/other/supreme/2010SupRules/info/index_family.htm" target="_blank">forms</a>
provided on the Supreme Court of B.C. website. (PDF).</p>
<p>A <a href="http://www.familylaw.lss.bc.ca/guides/divorce/divJoint_courtForms.php" target="_blank">listing of forms</a>
that may be required for a Joint Divorce, as well as an overview of the divorce process,
can be found on the Legal Services Society web site.</p>
</div> </div>
</div> </div>
</div> </div>
<form action="{% url 'prequalification' '05' %}">
<input type="submit" value="Next"/>
</form>
{% endblock %} {% endblock %}
{% block sidebar %} {% block sidebar %}
<!-- no sidebar --> <!-- no sidebar -->

+ 156
- 162
edivorce/apps/core/templates/prequalification/step_05.html View File

@ -4,171 +4,165 @@
{% block title %}{{ block.super }}: Prequalification{% endblock %} {% block title %}{{ block.super }}: Prequalification{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Do you qualify for a divorce in BC?</h1>
<h3>Will you be able to provide proof of your marriage (in the form of an original or certified marriage certificate
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Original Marriage Certificate</b><br /><br />The marriage certificate you received at the church —
or any other place where you were married — isn't acceptable in court. You can get a marriage certificate
or a certified copy of the registration of marriage from
<a href=&quot;http://www2.gov.B.C..ca/gov/content/life-events/marriages/marriage-certificates&quot;>Vital Statistics</a>
(an office run by the provincial government)." aria-hidden="true"></i>
or registration of marriage
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Registration Marriage Certificate</b><br /><br />The Registration of Marriage is the document issued by
Vital Statistics (an office run by the provincial government) along with the Marriage License. This document
would have been signed by you and your spouse, the person who married you (the officiant) and your wedding ceremony witnesses.
Within 48 hours of the wedding, the officiant would have submitted the registration to the Vital Statistics Agency
where the registration information becomes a permanent legal record. Vital Statistics cannot issue a marriage certificate
until the marriage is registered. <br/><br/> For more information, please refer to the
<a href=&quot;http://www2.gov.B.C..ca/gov/content/life-events/marriages/marriage-registration/certified-copies-and-certified-electronic-extracts-of-a-marriage-registration&quot;>Marriage Registration page</a>
on the B.C. Government web site." aria-hidden="true"></i>)?</h3>
<div class="btn-radio-group" data-toggle="buttons">
<label class="btn btn-radio">
{% input_field type="radio" name="original_marriage_certificate" autocomplete="off" value="YES" data_target_id="marriage_certificate" data_reveal_target="false" %} Yes
</label>
<label class="btn btn-radio">
{% input_field type="radio" name="original_marriage_certificate" autocomplete="off" value="NO" data_target_id="marriage_certificate" data_reveal_target="true" %} No
</label>
</div>
<p><em>The marriage certificate you received at the church — or any other place where you were married — isn't
acceptable in court. You need the certificate that was issued to you by the government.</em></p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapseExample" aria-controls="collapseExample">
<div>
How can I get an original copy of my marriage certificate or registration of marriage?
</div>
</div>
<div class="collapse" id="collapseExample">
<div>
<p>If you were married in B.C. you can get a copy of your marriage certificate or a certified copy of
the registration of marriage from
<a href="http://www2.gov.bc.ca/gov/content/life-events/marriages/marriage-certificates" target="_blank">
Vital Statistics</a> (an office run by the provincial government).</p>
<p><b>If You Were Married in Another Province</b></p>
<p>If you were married in another province you need to get the official marriage certificate or
registration of marriage from the office equivalent to the department of vital statistics in that
province.</p>
<p><b>If You Were married in Another Country</b></p>
<p>Contact the office responsible for marriage records in the country where you were married.</p>
</div>
</div>
<div class="reveal" id="marriage_certificate" hidden>
<h3>Will you be providing the marriage certificate or registration of marriage at a later date</h3>
<div class="btn-radio-group" data-toggle="buttons">
<label class="btn btn-radio">
{% input_field type="radio" name="provide_certificate_later" autocomplete="off" value="YES" data_target_id="reason_not_providing" data_reveal_target="false" data_related_id="provide_later_date" %} Yes
</label>
<label class="btn btn-radio btn-radio-long">
{% input_field type="radio" name="provide_certificate_later" autocomplete="off" value="NO" data_target_id="reason_not_providing" data_reveal_target="true" data_related_id="provide_later_date" %} No, it is impossible to obtain a marriage certificate (or registration of marriage
</label>
</div>
<div class="information-message" id="provide_later_date" hidden>
<div class="bg-danger">
<p>
If you can't get your marriage certificate before your case begins, state that on the court forms and explain why.
You may be able to file your marriage certificate later if the court registrar
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Court Registrar</b><br /><br />An officer of the court who has the power to make
certain decisions (such as whether or not a divorce application without an original marriage certificate will be accepted).</a>." aria-hidden="true"></i>
is satisfied that you had a good reason for not filing this document sooner. If the court registrar is dissatisfied
with your reason for not filing your marriage certificate, you will be unable to file your claim for divorce until the document can be produced.
</p>
</div>
<h3>If you will be providing the marriage certificate or registration of marriage at a later date, please let us know why.</h3>
<p>Ideally the marriage certificate or registration of marriage is provided to the registry
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Registry</b><br /><br />A registry is where you file your divorce documents.
Registries are located in courthouses <a href=&quot;http://www.ag.gov.bc.ca/courts/overview/locations/&quot;>around the province</a>." aria-hidden="true"></i>
when you file the Notice of Joint Family Claim
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Notice of Joint Family Claim</b><br /><br />This is the document that start the court case.
The Notice of Joint Family Claim (form F1) gives the court details about you and your spouse, about your marriage
and separation, and about what you're asking the court for.</a>." aria-hidden="true"></i>(form F1).</p>
{% input_field type="textarea" class="response-textarea" name="provide_certificate_later_reason" rows="8" cols="65" %}
<p>If the registrar
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>registrar</b><br /><br />An officer of the court who has the power to make
certain decisions (such as whether or not a divorce application without an original marriage certificate will be accepted).</a>." aria-hidden="true"></i>
agrees with the reasons you provide, and accepts the Notice of Joint Family Claim (form F1),
you will need to provide proof of marriage before your application for a divorce order
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>order</b><br /><br />A type of court ruling a judge or master makes that sets out what you must do or not do.</a>." aria-hidden="true"></i>
will be reviewed by the court. Other matters can be pursued in the mean time.</p>
<p>If the registrar is dissatisfied with the reason (s) you provide, you will not be able to file
the Notice of Joint Family claim (form F1) until the proof of marriage can be produced.</p>
</div>
<div class="information-message" id="reason_not_providing" hidden>
<div class="bg-danger">
<p>Since you will not be providing a marriage certificate, or a registration of marriage, you will need
to state why it is impossible for you to obtain this documentation. The court registrar
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Court Registrar</b><br /><br />An officer of the court who has the power to make
certain decisions (such as whether or not a divorce application without an original marriage certificate will be accepted).</a>." aria-hidden="true"></i>
will review and then decide whether or not they will accept your reason (s). You will be asked for this detail later in this online tool.</p>
</div>
<h3>Please tell us why it is impossible to obtain a marriage certificate or registration of marriage.
The registrar will review and then decide whether or not they will accept your reason (s).</h3>
{% input_field type="textarea" class="response-textarea" name="not_provide_certificate_reason" rows="8" cols="65" %}
</div>
</div>
<div>
<h3>Is you marriage certificate or registration of marriage in English?</h3>
<div class="btn-radio-group" data-toggle="buttons">
<label class="btn btn-radio">
{% input_field type="radio" name="marriage_certificate_in_english" autocomplete="off" value="YES" data_target_id="certificate_in_english" data_reveal_target="false" %} Yes
</label>
<label class="btn btn-radio">
{% input_field type="radio" name="marriage_certificate_in_english" autocomplete="off" value="NO" data_target_id="certificate_in_english" data_reveal_target="true" %} No
</label>
</div>
<div class="information-message bg-danger" id="certificate_in_english" hidden>
<p>Sorry but at this point in time you will need to complete your application for divorce using the Supreme Court of B.C. forms (PDF). The
<a href="http://www.ag.gov.bc.ca/courts/other/supreme/2010SupRules/info/index_family.htm" target="_blank">forms</a>
can be found on the Court Services Branch web site.</p>
<p>A <a href="http://www.familylaw.lss.bc.ca/guides/divorce/divJoint_courtForms.php" target="_blank">listing of forms</a>
that may be required for a Joint Divorce can also be found on the Family Law web site. </p>
<p><b>Proof of MarriageTranslation</b><br/>
You need to get your proof of marriage translated by a certified translator if it is not t in English.
Ask the translator to give you an Affidavit of Translation. You'll then need to file at the court registry
both the original marriage certificate/registration of marriage and the Affidavit of Translation
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Affidavit of Translation</b><br /><br />The affidavit of translation is an affidavit sworn by
a translator before a notary or commissioner for taking affidavits. " aria-hidden="true"></i>
with the English translation attached as exhibits. A translator can help you do this.</p>
<p><b>If you were married in Quebec and your marriage certificate is in French</b><br/>
If your marriage certificate is in French, the registry may require you to get it translated into English. Contact your
<a href="http://www.courts.gov.bc.ca/supreme_court/court_locations_and_contacts.aspx" target="_blank">Supreme Court registry</a>
to find out what its rule is about marriage certificates in French.</p>
</div>
</div>
<div style="display: flex">
<form action="{% url 'prequalification' '06' %}">
<input type="submit" value="Next"/>
</form>
</div>
</div>
<h1>Do you qualify for a divorce in BC?</h1>
<h3>Will you be able to provide proof of your marriage (in the form of an original or certified marriage certificate
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Original Marriage Certificate</b><br /><br />The marriage certificate you received at the church —
or any other place where you were married — isn't acceptable in court. You can get a marriage certificate
or a certified copy of the registration of marriage from
<a href=&quot;http://www2.gov.B.C..ca/gov/content/life-events/marriages/marriage-certificates&quot;>Vital Statistics</a>
(an office run by the provincial government)." aria-hidden="true"></i>
or registration of marriage
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Registration Marriage Certificate</b><br /><br />The Registration of Marriage is the document issued by
Vital Statistics (an office run by the provincial government) along with the Marriage License. This document
would have been signed by you and your spouse, the person who married you (the officiant) and your wedding ceremony witnesses.
Within 48 hours of the wedding, the officiant would have submitted the registration to the Vital Statistics Agency
where the registration information becomes a permanent legal record. Vital Statistics cannot issue a marriage certificate
until the marriage is registered. <br/><br/> For more information, please refer to the
<a href=&quot;http://www2.gov.B.C..ca/gov/content/life-events/marriages/marriage-registration/certified-copies-and-certified-electronic-extracts-of-a-marriage-registration&quot;>Marriage Registration page</a>
on the B.C. Government web site." aria-hidden="true"></i>)?</h3>
<div class="btn-radio-group" data-toggle="buttons">
<label class="btn btn-radio">
{% input_field type="radio" name="original_marriage_certificate" autocomplete="off" value="YES" data_target_id="marriage_certificate" data_reveal_target="false" %} Yes
</label>
<label class="btn btn-radio">
{% input_field type="radio" name="original_marriage_certificate" autocomplete="off" value="NO" data_target_id="marriage_certificate" data_reveal_target="true" %} No
</label>
</div>
<p><em>The marriage certificate you received at the church — or any other place where you were married — isn't
acceptable in court. You need the certificate that was issued to you by the government.</em></p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapseExample" aria-controls="collapseExample">
<div>
How can I get an original copy of my marriage certificate or registration of marriage?
</div>
</div>
<div class="collapse" id="collapseExample">
<div>
<p>If you were married in B.C. you can get a copy of your marriage certificate or a certified copy of
the registration of marriage from
<a href="http://www2.gov.bc.ca/gov/content/life-events/marriages/marriage-certificates" target="_blank">
Vital Statistics</a> (an office run by the provincial government).</p>
<p><b>If You Were Married in Another Province</b></p>
<p>If you were married in another province you need to get the official marriage certificate or
registration of marriage from the office equivalent to the department of vital statistics in that
province.</p>
<p><b>If You Were married in Another Country</b></p>
<p>Contact the office responsible for marriage records in the country where you were married.</p>
</div>
</div>
<div class="reveal" id="marriage_certificate" hidden>
<h3>Will you be providing the marriage certificate or registration of marriage at a later date</h3>
<div class="btn-radio-group" data-toggle="buttons">
<label class="btn btn-radio">
{% input_field type="radio" name="provide_certificate_later" autocomplete="off" value="YES" data_target_id="reason_not_providing" data_reveal_target="false" data_related_id="provide_later_date" %} Yes
</label>
<label class="btn btn-radio btn-radio-long">
{% input_field type="radio" name="provide_certificate_later" autocomplete="off" value="NO" data_target_id="reason_not_providing" data_reveal_target="true" data_related_id="provide_later_date" %} No, it is impossible to obtain a marriage certificate (or registration of marriage
</label>
</div>
<div class="information-message" id="provide_later_date" hidden>
<div class="bg-danger">
<p>
If you can't get your marriage certificate before your case begins, state that on the court forms and explain why.
You may be able to file your marriage certificate later if the court registrar
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Court Registrar</b><br /><br />An officer of the court who has the power to make
certain decisions (such as whether or not a divorce application without an original marriage certificate will be accepted).</a>." aria-hidden="true"></i>
is satisfied that you had a good reason for not filing this document sooner. If the court registrar is dissatisfied
with your reason for not filing your marriage certificate, you will be unable to file your claim for divorce until the document can be produced.
</p>
</div> </div>
<h3>If you will be providing the marriage certificate or registration of marriage at a later date, please let us know why.</h3>
<p>Ideally the marriage certificate or registration of marriage is provided to the registry
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Registry</b><br /><br />A registry is where you file your divorce documents.
Registries are located in courthouses <a href=&quot;http://www.ag.gov.bc.ca/courts/overview/locations/&quot;>around the province</a>." aria-hidden="true"></i>
when you file the Notice of Joint Family Claim
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Notice of Joint Family Claim</b><br /><br />This is the document that start the court case.
The Notice of Joint Family Claim (form F1) gives the court details about you and your spouse, about your marriage
and separation, and about what you're asking the court for.</a>." aria-hidden="true"></i>(form F1).</p>
{% input_field type="textarea" class="response-textarea" name="provide_certificate_later_reason" rows="8" cols="65" %}
<p>If the registrar
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>registrar</b><br /><br />An officer of the court who has the power to make
certain decisions (such as whether or not a divorce application without an original marriage certificate will be accepted).</a>." aria-hidden="true"></i>
agrees with the reasons you provide, and accepts the Notice of Joint Family Claim (form F1),
you will need to provide proof of marriage before your application for a divorce order
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>order</b><br /><br />A type of court ruling a judge or master makes that sets out what you must do or not do.</a>." aria-hidden="true"></i>
will be reviewed by the court. Other matters can be pursued in the mean time.</p>
<p>If the registrar is dissatisfied with the reason (s) you provide, you will not be able to file
the Notice of Joint Family claim (form F1) until the proof of marriage can be produced.</p>
</div>
<div class="information-message" id="reason_not_providing" hidden>
<div class="bg-danger">
<p>Since you will not be providing a marriage certificate, or a registration of marriage, you will need
to state why it is impossible for you to obtain this documentation. The court registrar
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Court Registrar</b><br /><br />An officer of the court who has the power to make
certain decisions (such as whether or not a divorce application without an original marriage certificate will be accepted).</a>." aria-hidden="true"></i>
will review and then decide whether or not they will accept your reason (s). You will be asked for this detail later in this online tool.</p>
</div>
<h3>Please tell us why it is impossible to obtain a marriage certificate or registration of marriage.
The registrar will review and then decide whether or not they will accept your reason (s).</h3>
{% input_field type="textarea" class="response-textarea" name="not_provide_certificate_reason" rows="8" cols="65" %}
</div> </div>
</div> </div>
<div>
<h3>Is you marriage certificate or registration of marriage in English?</h3>
<div class="btn-radio-group" data-toggle="buttons">
<label class="btn btn-radio">
{% input_field type="radio" name="marriage_certificate_in_english" autocomplete="off" value="YES" data_target_id="certificate_in_english" data_reveal_target="false" %} Yes
</label>
<label class="btn btn-radio">
{% input_field type="radio" name="marriage_certificate_in_english" autocomplete="off" value="NO" data_target_id="certificate_in_english" data_reveal_target="true" %} No
</label>
</div>
<div class="information-message bg-danger" id="certificate_in_english" hidden>
<p>Sorry but at this point in time you will need to complete your application for divorce using the Supreme Court of B.C. forms (PDF). The
<a href="http://www.ag.gov.bc.ca/courts/other/supreme/2010SupRules/info/index_family.htm" target="_blank">forms</a>
can be found on the Court Services Branch web site.</p>
<p>A <a href="http://www.familylaw.lss.bc.ca/guides/divorce/divJoint_courtForms.php" target="_blank">listing of forms</a>
that may be required for a Joint Divorce can also be found on the Family Law web site. </p>
<p><b>Proof of MarriageTranslation</b><br/>
You need to get your proof of marriage translated by a certified translator if it is not t in English.
Ask the translator to give you an Affidavit of Translation. You'll then need to file at the court registry
both the original marriage certificate/registration of marriage and the Affidavit of Translation
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Affidavit of Translation</b><br /><br />The affidavit of translation is an affidavit sworn by
a translator before a notary or commissioner for taking affidavits. " aria-hidden="true"></i>
with the English translation attached as exhibits. A translator can help you do this.</p>
<p><b>If you were married in Quebec and your marriage certificate is in French</b><br/>
If your marriage certificate is in French, the registry may require you to get it translated into English. Contact your
<a href="http://www.courts.gov.bc.ca/supreme_court/court_locations_and_contacts.aspx" target="_blank">Supreme Court registry</a>
to find out what its rule is about marriage certificates in French.</p>
</div>
</div>
<div style="display: flex">
<form action="{% url 'prequalification' '06' %}">
<input type="submit" value="Next"/>
</form>
</div>
{% endblock %} {% endblock %}
{% block sidebarText %} {% block sidebarText %}
<h3>Video: Needed for Divorce: Your Marriage Certificate</h3> <h3>Video: Needed for Divorce: Your Marriage Certificate</h3>


+ 122
- 134
edivorce/apps/core/templates/prequalification/step_06.html View File

@ -4,143 +4,131 @@
{% block title %}{{ block.super }}: Prequalification{% endblock %} {% block title %}{{ block.super }}: Prequalification{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Do you qualify for a divorce in BC?</h1>
<h3>What is your reason (grounds) for asking for a divorce?</h3>
<p>
<em>The only way you will be granted a divorce in Canada is if you can prove to the courts that your marriage
has broken down and cannot be repaired.</em>
</p>
<div>
<div class="radio"><label>{% input_field type="radio" name="divorce_reason" value="live separate" data_target_id="other_reason" data_reveal_target="false" %}You and your spouse have lived separate and apart for one year or more</label></div>
<p><em>Usually the grounds for divorce are that you've been living separately and apart form your spouse for at least one year</em></p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_separated_apart" aria-controls="collapse_separated_apart">
<div>
What does separated and apart look like?
</div>
</div>
<div class="collapse" id="collapse_separated_apart">
<div>
<p>
You and your spouse are living separate lives from one another, whether under the same roof or in
separate homes. This could mean:
</p>
<ul>
<li>You’re living in separate rooms</li>
<li>You’re sleeping in separate beds</li>
<li>That there’s no sexual relationship</li>
<li>That you don’t eat meals together</li>
<li>That you don’t attend social events together</li>
</ul>
<p>Basically you and your spouse have decided the marriage is over and have communicated this to one another</p>
</div>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_work_things_out" aria-controls="collapse_work_things_out">
<div>
What happens if my spouse and I tried to work things out?
</div>
</div>
<div class="collapse" id="collapse_work_things_out">
<div>
<p>
If you apply for a divorce on the basis of a one-year separation, you can live together for up to 90days
(either before or after you file the application) to try to reconcile. If things do not work out,
you can continue your action for divorce as if you had not spent the time together.
</p>
</div>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_still_live_together" aria-controls="collapse_still_live_together">
<div>
If we still live together are we separated?
</div>
</div>
<div class="collapse" id="collapse_still_live_together">
<div>
<p>Some couples choose to separate but still live in the same house. A lawyer can tell you what factors courts may consider when they are deciding if you are separated.</p>
<p>
A list of activities and behaviours that the
<a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/howToProveYouAreSeparatedIfYouStillLiveTogether.php" target="_blank">
courts consider to be indicators of a couple being separated</a> can be found on the Legal Services Society website.
</p>
</div>
</div>
</div>
<div>
<div class="radio"><label>{% input_field type="radio" name="divorce_reason" value="other" data_target_id="other_reason" data_reveal_target="true" %}Other reasons (grounds)</label></div>
<div class="information-message bg-danger" id="other_reason" hidden>
<p>If you ask for a divorce due to "other reason" reasons, you have to present evidence to the court to
prove the facts of the adultery or physical or mental cruelty.</p>
<p>At this point in time you will need to complete your application for divorce using the
<a href="http://www.ag.gov.bc.ca/courts/other/supreme/2010SupRules/info/index_family.htm" target="_blank">PDF version of the forms</a>.
The forms can be found on the Court Services Branch web site: Supreme Court - Provincial Court.</p>
<p>A <a href="http://www.familylaw.lss.bc.ca/guides/divorce/divJoint_courtForms.php" target="_blank">listing of forms</a>
that may be required for a Joint Divorce can be found on the Legal Services Society web site.</p>
</div>
<div>
<p><em>For example:</em></p>
<ul>
<li><em>Your spouse has been physically abusive or mentally cruel to you</em></li>
<li><em>Your spouse has committed adultery</em></li>
</ul>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_which_grounds_select" aria-controls="collapse_which_grounds_select">
<div>
Which grounds should I select since more than one scenario applies to my marriage?
</div>
</div>
<div class="collapse" id="collapse_which_grounds_select">
<div>
<p>
Most divorces use the one-year separation ground. But you can also apply for a divorce earlier on the basis of adultery or
physical or mental cruelty. If you ask for a divorce for one of these reasons, you have to present evidence to the court to prove
the facts of the adultery or physical or mental cruelty. So generally speaking, asking for a divorce based on the grounds of
having lived separate and apart for more than one year is the least complicated.
</p>
<p>
Canada has no-fault divorce. No-fault, in this context, means that the reasons for marriage breakdown have nothing at all to do
with the court's consideration of issues like custody and support. So even though you may be really upset at your spouse's misbehaviour,
it will have no impact on how the legal issues are addressed.
</p>
</div>
</div>
</div>
<form action="{% url 'login' %}">
<input type="submit" value="Next"/>
</form>
</div>
<h1>Do you qualify for a divorce in BC?</h1>
<h3>What is your reason (grounds) for asking for a divorce?</h3>
<p>
<em>The only way you will be granted a divorce in Canada is if you can prove to the courts that your marriage
has broken down and cannot be repaired.</em>
</p>
<div class="question-well">
<div class="radio"><label>{% input_field type="radio" name="divorce_reason" value="live separate" data_target_id="other_reason" data_reveal_target="false" %}You and your spouse have lived separate and apart for one year or more</label></div>
<p><em>Usually the grounds for divorce are that you've been living separately and apart form your spouse for at least one year</em></p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_separated_apart" aria-controls="collapse_separated_apart">
<div>
What does separated and apart look like?
</div>
</div>
<div class="collapse" id="collapse_separated_apart">
<div>
<p>
You and your spouse are living separate lives from one another, whether under the same roof or in separate homes. This could mean:
</p>
<ul>
<li>You’re living in separate rooms</li>
<li>You’re sleeping in separate beds</li>
<li>That there’s no sexual relationship</li>
<li>That you don’t eat meals together</li>
<li>That you don’t attend social events together</li>
</ul>
<p>Basically you and your spouse have decided the marriage is over and have communicated this to one another</p>
</div>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_work_things_out" aria-controls="collapse_work_things_out">
<div>
What happens if my spouse and I tried to work things out?
</div>
</div>
<div class="collapse" id="collapse_work_things_out">
<div>
<p>
If you apply for a divorce on the basis of a one-year separation, you can live together for up to 90days (either before or after you file the application) to try to reconcile. If things do not work out, you can continue your action for divorce as if you
had not spent the time together.
</p>
</div>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_still_live_together" aria-controls="collapse_still_live_together">
<div>
If we still live together are we separated?
</div>
</div>
<div class="collapse" id="collapse_still_live_together">
<div>
<p>Some couples choose to separate but still live in the same house. A lawyer can tell you what factors courts may consider when they are deciding if you are separated.</p>
<p>
A list of activities and behaviours that the
<a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/howToProveYouAreSeparatedIfYouStillLiveTogether.php" target="_blank">
courts consider to be indicators of a couple being separated</a> can be found on the Legal Services Society website.
</p>
</div> </div>
</div> </div>
</div> </div>
<div class="question-well">
<div class="radio"><label>{% input_field type="radio" name="divorce_reason" value="other" data_target_id="other_reason" data_reveal_target="true" %}Other reasons (grounds)</label></div>
<div class="information-message bg-danger" id="other_reason" hidden>
<p>If you ask for a divorce due to "other reason" reasons, you have to present evidence to the court to prove the facts of the adultery or physical or mental cruelty.</p>
<p>At this point in time you will need to complete your application for divorce using the
<a href="http://www.ag.gov.bc.ca/courts/other/supreme/2010SupRules/info/index_family.htm" target="_blank">PDF version of the forms</a>. The forms can be found on the Court Services Branch web site: Supreme Court - Provincial Court.</p>
<p>A <a href="http://www.familylaw.lss.bc.ca/guides/divorce/divJoint_courtForms.php" target="_blank">listing of forms</a> that may be required for a Joint Divorce can be found on the Legal Services Society web site.</p>
</div>
<p><em>For example:</em></p>
<ul>
<li><em>Your spouse has been physically abusive or mentally cruel to you</em></li>
<li><em>Your spouse has committed adultery</em></li>
</ul>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_which_grounds_select" aria-controls="collapse_which_grounds_select">
<div>
Which grounds should I select since more than one scenario applies to my marriage?
</div>
</div>
<div class="collapse" id="collapse_which_grounds_select">
<div>
<p>
Most divorces use the one-year separation ground. But you can also apply for a divorce earlier on the basis of adultery or physical or mental cruelty. If you ask for a divorce for one of these reasons, you have to present evidence to the court to prove
the facts of the adultery or physical or mental cruelty. So generally speaking, asking for a divorce based on the grounds of having lived separate and apart for more than one year is the least complicated.
</p>
<p>
Canada has no-fault divorce. No-fault, in this context, means that the reasons for marriage breakdown have nothing at all to do with the court's consideration of issues like custody and support. So even though you may be really upset at your spouse's
misbehaviour, it will have no impact on how the legal issues are addressed.
</p>
</div>
</div>
</div>
<form action="{% url 'login' %}">
<input type="submit" value="Next" />
</form>
{% endblock %} {% endblock %}
{% block sidebarText %} {% block sidebarText %}
<h3>Grounds for Divorce</h3>
<p>Canada has no-fault divorce. The only ground for a divorce in the Divorce Act is marriage breakdown. The Divorce Act says you can show your marriage has broken down if any ONE of the following criteria applies to you:</p>
<p>You have been living apart for one year or more. Your spouse has been physically or mentally cruel to you.</p>
<p>Your spouse has committed adultery. If you apply for a divorce on the basis of a one-year separation, you can live together for up to 90 days
(either before or after you file the application) to try to reconcile. If things do not work out, you can continue your action for divorce as if you had not spent the time together.</p>
<p>Some couples choose to separate but still live in the same house. A lawyer can tell you what factors courts may consider when they are deciding if you are separated.</p>
<div>
<p>You can also get a divorce if:</p>
<ul>
<li>you or your spouse has committed adultery (been unfaithful) that hasn't been forgiven, or</li>
<li>your spouse treated you with physical or mental cruelty that you haven't forgiven, which makes it impossible for you to continue to live together.</li>
</ul>
<p>To get a divorce for these reasons you have to prove these things in court.</p>
<p>The majority of divorces are uncontested or undefended divorces (about 80 percent). That means that the
divorcing couple have settled on how they're going to settle their parenting, support, and property
issues. But they still need a court order for the divorce.</p>
</div>
<h3>Grounds for Divorce</h3>
<p>Canada has no-fault divorce. The only ground for a divorce in the Divorce Act is marriage breakdown. The Divorce Act says you can show your marriage has broken down if any ONE of the following criteria applies to you:</p>
<p>You have been living apart for one year or more. Your spouse has been physically or mentally cruel to you.</p>
<p>Your spouse has committed adultery. If you apply for a divorce on the basis of a one-year separation, you can live together for up to 90 days (either before or after you file the application) to try to reconcile. If things do not work out, you can continue
your action for divorce as if you had not spent the time together.</p>
<p>Some couples choose to separate but still live in the same house. A lawyer can tell you what factors courts may consider when they are deciding if you are separated.</p>
<div>
<p>You can also get a divorce if:</p>
<ul>
<li>you or your spouse has committed adultery (been unfaithful) that hasn't been forgiven, or</li>
<li>your spouse treated you with physical or mental cruelty that you haven't forgiven, which makes it impossible for you to continue to live together.</li>
</ul>
<p>To get a divorce for these reasons you have to prove these things in court.</p>
<p>The majority of divorces are uncontested or undefended divorces (about 80 percent). That means that the divorcing couple have settled on how they're going to settle their parenting, support, and property issues. But they still need a court order for
the divorce.</p>
</div>
{% endblock %} {% endblock %}

+ 116
- 122
edivorce/apps/core/templates/question/01_orders.html View File

@ -4,136 +4,130 @@
{% block title %}{{ block.super }}: Prequalification{% endblock %} {% block title %}{{ block.super }}: Prequalification{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Step 1: What are you asking for?</h1>
<h3>What are you asking for (Orders)
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Orders Definition</b><br /><br />A record of a decision made by a judge or master
<i class=&quot;fa fa-question-circle&quot; data-toggle=&quot;tooltip&quot; data-placement=&quot;right&quot; data-html=&quot;true&quot;
title=&quot;<b>Master Definition</b><br /><br />A judicial officer of the Supreme Court who can hear and decide certain applications, including interim applications for parenting or support orders.&quot; aria-hidden=&quot;true&quot;></i>
that tells you or your spouse what you must do (or not do). For example: The court has made an order that your spouse must pay you $250 on a monthly basis to help pay off your combined debt." aria-hidden="true"></i>?</h3>
<p><em>With an undefended divorce (aka desk order), you do not need to appear in court. However a judge needs to review and approve what you are asking for. Orders allow you to tell the court what you want (for example parenting support and property division).</em></p>
<p><em>Please select what you are asking for. Later on you will be asked to provide details for each request.</em></p>
<div class="checkbox-group">
<div>
<div class="checkbox">
<label>
{% input_field type="checkbox" name="want_which_orders" value="A legal end to the marriage" %}<b>A legal end to the marriage</b>
</label>
</div>
<p>
Divorce is the end of a legal marriage. To get a divorce, you must go through a legal process and get a court order that says the marriage has ended.
</p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_common_law" aria-controls="collapse_common_law">
<div>
Are you in a common law relationship (legally know as a "marriage like relationship"?
</div>
</div>
<div class="collapse" id="collapse_common_law">
<div>
<p>A divorce is a court order, made under the Divorce Act, that ends a marriage. Only married spouses need to get a divorce to end their relationship; unmarried spouses and other unmarried couples do not need to divorce. Their relationships are over when they separate.
<a href="http://www.cbabc.org/For-the-Public/Dial-A-Law/Scripts/Family-Law/120" target="_blank">http://www.cbabc.org/For-the-Public/Dial-A-Law/Scripts/Family-Law/120</a>
</p>
<p>
So you do not need to ask for a legal end to the marriage (Divorce order). However, if you would like spousal support or property and debt issues addressed, you will need to ask for these orders.
</p>
<p>
Note that there are important time limits if you want to apply for spousal support and/or divide property, debt, or a pension.
</p>
<p>
If you were married, you must apply to divide property within two years after you get an order for divorce.
If you were living in a marriage-like relationship for at least two years, you must apply within two years of the date you separated.
</p>
<p>
For more information refer to the
<a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/spousal_support.php" target="_blank">Spousal Support</a> and
<a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/dividePropertyAndDebts.php" target="_blank">How to Divide Property and Debt</a> fact sheets on the Legal Services Society web site.
</p>
</div>
</div>
</div>
<div><div class="checkbox"><label>{% input_field type="checkbox" name="want_which_orders" value="Spousal support" data_target_id="spouse_support_alert" data_reveal_target="true" %}<b>Spousal support</b></label></div>
<p><em>Payments to support you, not the children.</em></p>
<p><em>For more information, please see the fact sheet Spousal Support
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>spousal support</b><br /><br />When a couple separates, one spouse may be eligible to
receive financial support from the other. This is called spousal support. Spousal support is separate
and distinct from child support. Unlike child support, spousal support is not a right in every case.
You are entitled to spousal support in certain situations." aria-hidden="true"></i>
by the Legal Services Society.
<a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/spousal_support.php" target="_blank">http://www.familylaw.lss.bc.ca/resources/fact_sheets/spousal_support.php</a></em></p>
<div class="information-message bg-danger" id="spouse_support_alert" hidden>
<p>If you and your spouse have already agreed on spousal support (which could be in the form of a separation agreement
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Separation agreement</b><br /><br /><p>A document that sets out how you and your spouse have agreed to deal with thing matters
like parenting support and property after you separate (Provincial family law calls it an agreement).
There's no official form to use for drafting up a separation agreement.</p>" aria-hidden="true"></i>
) then you do not need to ask for an Order for Spousal Support. However if you want the spousal support agreement to be enforceable (legally binding) you will need to select this option.</p>
<h2>Time limit to apply for court order </h2>
<p>If you were married, you must apply for spousal support under the
<a href="http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice/family-law/spousal-support" target="_blank">Family Law Act</a>
within two years after you get an order for divorce. If you are applying for spousal support under the Divorce Act, you do not have a time limit.</p>
<p>If you were unmarried, and you qualify for spousal support, you must apply within two years of the date you separated.</p>
</div>
</div>
<div><div class="checkbox"><label>{% input_field type="checkbox" name="want_which_orders" value="Division of property and debts" data_target_id="property_division_alert" data_reveal_target="true" %}<b>Division of property and debts</b></label></div>
<p><em>Anything you own including real estate, bank accounts, cars and RRSPs.</em></p>
<p><em>For more information, please refer to the following fact sheets on the Legal Services Society website:</em></p>
<ul>
<li><a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/dividePropertyAndDebts.php" target="_blank">How to Divide Property and Debts</a></li>
<li><a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/debtsAfterSeparation.php" target="_blank">Dealing with Debts After Separation</a></li>
</ul>
<div class="information-message bg-danger" id="property_division_alert" hidden>
<h2>Time limit to apply for court order </h2>
<p>If you were <b>married</b>, you must apply to divide property within two years after you get an order for divorce.</p>
<p>If you were living in a <b>marriage-like relationship</b> for at least two years, you must apply within two years of the date you separated.</p>
<div style="border:solid">
<h2>(Dev note: Display this alert message if the user has indicated that they have lived in a marriage like relationship)</h2>
<p>In order to be considered a spouse for the purpose of dividing property or debt you must have lived together in a marriage-like relationship for at least two years.</p>
</div>
<p><em>For more information, please refer to the following fact sheets on the Legal Services Society website:</em></p>
<ul>
<li><a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/dividePropertyAndDebts.php" target="_blank">How to Divide Property and Debts</a></li>
<li><a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/debtsAfterSeparation.php" target="_blank">Dealing with Debts After Separation</a></li>
</ul>
</div>
</div>
<div><div class="checkbox"><label>{% input_field type="checkbox" name="want_which_orders" value="Other orders" %}<b>Other orders</b></label></div>
<p><em>For example, a name change.</em></p>
</div>
<div><div class="checkbox"><label>{% input_field type="checkbox" name="want_which_orders" value="Child support" data_target_id="child_support_alert" data_reveal_target="true" %}<b>Child support (Out of scope)</b></label></div>
<div class="information-message bg-danger" id="child_support_alert" hidden>
<p>We've noticed that at this point in time you are not applying for spousal support and/or division of property, debt, or a pension. If you decide to request these items in the future there are some time limits.</p>
<h2>Division of Property and Debts</h2>
<p>If you were married, you must apply to divide property within two years after you get an order for divorce. If you were living in a marriage-like relationship for at least two years, you must apply within two years of the date you separated.</p>
<h2>Spousal Support</h2>
<p>If you were married, you must apply for spousal support under the Family Law Act within two years after you get an order for divorce. If you are applying for spousal support under the Divorce Act, you do not have a time limit.</p>
<p>If you were unmarried, and you qualify for spousal support, you must apply within two years of the date you separated.</p>
</div>
</div>
</div>
<div style="display: flex">
<form action="{% url 'overview' %}">
<input type="submit" value="Back"/>
</form>
<form action="#">
<input type="submit" value="Save"/>
</form>
<form action="{% url 'question_steps' '02_claimant' %}">
<input type="submit" value="Next"/>
</form>
</div>
<h1><small>Step 1:</small>What are you asking for?</h1>
<h3>What are you asking for (Orders)
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Orders Definition</b><br /><br />A record of a decision made by a judge or master
<i class=&quot;fa fa-question-circle&quot; data-toggle=&quot;tooltip&quot; data-placement=&quot;right&quot; data-html=&quot;true&quot;
title=&quot;<b>Master Definition</b><br /><br />A judicial officer of the Supreme Court who can hear and decide certain applications, including interim applications for parenting or support orders.&quot; aria-hidden=&quot;true&quot;></i>
that tells you or your spouse what you must do (or not do). For example: The court has made an order that your spouse must pay you $250 on a monthly basis to help pay off your combined debt." aria-hidden="true"></i>?</h3>
<p><em>With an undefended divorce (aka desk order), you do not need to appear in court. However a judge needs to review and approve what you are asking for. Orders allow you to tell the court what you want (for example parenting support and property division).</em></p>
<p><em>Please select what you are asking for. Later on you will be asked to provide details for each request.</em></p>
<div class="checkbox-group">
<div>
<div class="checkbox">
<label>
{% input_field type="checkbox" name="want_which_orders" value="A legal end to the marriage" %}<b>A legal end to the marriage</b>
</label>
</div>
<p>
Divorce is the end of a legal marriage. To get a divorce, you must go through a legal process and get a court order that says the marriage has ended.
</p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_common_law" aria-controls="collapse_common_law">
<div>
Are you in a common law relationship (legally know as a "marriage like relationship"?
</div>
</div>
<div class="collapse" id="collapse_common_law">
<div>
<p>A divorce is a court order, made under the Divorce Act, that ends a marriage. Only married spouses need to get a divorce to end their relationship; unmarried spouses and other unmarried couples do not need to divorce. Their relationships are over when they separate.
<a href="http://www.cbabc.org/For-the-Public/Dial-A-Law/Scripts/Family-Law/120" target="_blank">http://www.cbabc.org/For-the-Public/Dial-A-Law/Scripts/Family-Law/120</a>
</p>
<p>
So you do not need to ask for a legal end to the marriage (Divorce order). However, if you would like spousal support or property and debt issues addressed, you will need to ask for these orders.
</p>
<p>
Note that there are important time limits if you want to apply for spousal support and/or divide property, debt, or a pension.
</p>
<p>
If you were married, you must apply to divide property within two years after you get an order for divorce.
If you were living in a marriage-like relationship for at least two years, you must apply within two years of the date you separated.
</p>
<p>
For more information refer to the
<a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/spousal_support.php" target="_blank">Spousal Support</a> and
<a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/dividePropertyAndDebts.php" target="_blank">How to Divide Property and Debt</a> fact sheets on the Legal Services Society web site.
</p>
</div>
</div>
</div>
<div><div class="checkbox"><label>{% input_field type="checkbox" name="want_which_orders" value="Spousal support" data_target_id="spouse_support_alert" data_reveal_target="true" %}<b>Spousal support</b></label></div>
<p><em>Payments to support you, not the children.</em></p>
<p><em>For more information, please see the fact sheet Spousal Support
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>spousal support</b><br /><br />When a couple separates, one spouse may be eligible to
receive financial support from the other. This is called spousal support. Spousal support is separate
and distinct from child support. Unlike child support, spousal support is not a right in every case.
You are entitled to spousal support in certain situations." aria-hidden="true"></i>
by the Legal Services Society.
<a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/spousal_support.php" target="_blank">http://www.familylaw.lss.bc.ca/resources/fact_sheets/spousal_support.php</a></em></p>
<div class="information-message bg-danger" id="spouse_support_alert" hidden>
<p>If you and your spouse have already agreed on spousal support (which could be in the form of a separation agreement
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Separation agreement</b><br /><br /><p>A document that sets out how you and your spouse have agreed to deal with thing matters
like parenting support and property after you separate (Provincial family law calls it an agreement).
There's no official form to use for drafting up a separation agreement.</p>" aria-hidden="true"></i>
) then you do not need to ask for an Order for Spousal Support. However if you want the spousal support agreement to be enforceable (legally binding) you will need to select this option.</p>
<h2>Time limit to apply for court order </h2>
<p>If you were married, you must apply for spousal support under the
<a href="http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice/family-law/spousal-support" target="_blank">Family Law Act</a>
within two years after you get an order for divorce. If you are applying for spousal support under the Divorce Act, you do not have a time limit.</p>
<p>If you were unmarried, and you qualify for spousal support, you must apply within two years of the date you separated.</p>
</div>
</div>
<div><div class="checkbox"><label>{% input_field type="checkbox" name="want_which_orders" value="Division of property and debts" data_target_id="property_division_alert" data_reveal_target="true" %}<b>Division of property and debts</b></label></div>
<p><em>Anything you own including real estate, bank accounts, cars and RRSPs.</em></p>
<p><em>For more information, please refer to the following fact sheets on the Legal Services Society website:</em></p>
<ul>
<li><a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/dividePropertyAndDebts.php" target="_blank">How to Divide Property and Debts</a></li>
<li><a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/debtsAfterSeparation.php" target="_blank">Dealing with Debts After Separation</a></li>
</ul>
<div class="information-message bg-danger" id="property_division_alert" hidden>
<h2>Time limit to apply for court order </h2>
<p>If you were <b>married</b>, you must apply to divide property within two years after you get an order for divorce.</p>
<p>If you were living in a <b>marriage-like relationship</b> for at least two years, you must apply within two years of the date you separated.</p>
<div style="border:solid">
<h2>(Dev note: Display this alert message if the user has indicated that they have lived in a marriage like relationship)</h2>
<p>In order to be considered a spouse for the purpose of dividing property or debt you must have lived together in a marriage-like relationship for at least two years.</p>
</div> </div>
<p><em>For more information, please refer to the following fact sheets on the Legal Services Society website:</em></p>
<ul>
<li><a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/dividePropertyAndDebts.php" target="_blank">How to Divide Property and Debts</a></li>
<li><a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/debtsAfterSeparation.php" target="_blank">Dealing with Debts After Separation</a></li>
</ul>
</div>
</div>
<div><div class="checkbox"><label>{% input_field type="checkbox" name="want_which_orders" value="Other orders" %}<b>Other orders</b></label></div>
<p><em>For example, a name change.</em></p>
</div>
<div><div class="checkbox"><label>{% input_field type="checkbox" name="want_which_orders" value="Child support" data_target_id="child_support_alert" data_reveal_target="true" %}<b>Child support (Out of scope)</b></label></div>
<div class="information-message bg-danger" id="child_support_alert" hidden>
<p>We've noticed that at this point in time you are not applying for spousal support and/or division of property, debt, or a pension. If you decide to request these items in the future there are some time limits.</p>
<h2>Division of Property and Debts</h2>
<p>If you were married, you must apply to divide property within two years after you get an order for divorce. If you were living in a marriage-like relationship for at least two years, you must apply within two years of the date you separated.</p>
<h2>Spousal Support</h2>
<p>If you were married, you must apply for spousal support under the Family Law Act within two years after you get an order for divorce. If you are applying for spousal support under the Divorce Act, you do not have a time limit.</p>
<p>If you were unmarried, and you qualify for spousal support, you must apply within two years of the date you separated.</p>
</div> </div>
</div> </div>
</div> </div>
<div style="display: flex">
<form action="{% url 'overview' %}">
<input type="submit" value="Back"/>
</form>
<form action="#">
<input type="submit" value="Save"/>
</form>
<form action="{% url 'question_steps' '02_claimant' %}">
<input type="submit" value="Next"/>
</form>
</div>
{% endblock %} {% endblock %}
{% block sidebarText %} {% block sidebarText %}


+ 123
- 155
edivorce/apps/core/templates/question/02_claimant.html View File

@ -4,180 +4,148 @@
{% block title %}{{ block.super }}: Your Information{% endblock %} {% block title %}{{ block.super }}: Your Information{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Step 2. Your Information</h1>
<h2>Your Information</h2>
<div>
<h3>Please enter your name as it appears on the marriage certificate</h3>
{% input_field type="text" name="name_you" class="form-block input-wide response-textbox" %}
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_changed_name" aria-controls="collapse_changed_name">
<div>
Have you changed your legal name since getting married?
</div>
</div>
<div class="collapse" id="collapse_changed_name">
<div>
<p>If either of you has had a legal name change since you were married, put that new name on your form,
and bring along a copy of the change of name certificate when you file your documents.</p>
</div>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_maiden_name" aria-controls="collapse_maiden_name">
<div>
Should I use my maiden name or married name?
</div>
</div>
<div class="collapse" id="collapse_maiden_name">
<div>
<p>For the Notice of Family Claim (Form 1) you need to enter your name as it appears on the marriage certificate. </p>
<p>When you got married, your name didn't automatically change. You're allowed to use your spouse's surname, but a formal name change wasn't necessary.</p>
</div>
</div>
</div>
<div>
<h3>Do you go by any other names?</h3>
<div class="btn-radio-group" data-toggle="buttons">
<label class="btn btn-radio">
<h1><small>Step 2:</small>Your Information</h1>
<div class="question-well">
<h3>Please enter your name as it appears on the marriage certificate</h3> {% input_field type="text" name="name_you" class="form-block input-wide response-textbox" %}
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_changed_name" aria-controls="collapse_changed_name">
<div>
Have you changed your legal name since getting married?
</div>
</div>
<div class="collapse" id="collapse_changed_name">
<div>
<p>If either of you has had a legal name change since you were married, put that new name on your form, and bring along a copy of the change of name certificate when you file your documents.</p>
</div>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_maiden_name" aria-controls="collapse_maiden_name">
<div>
Should I use my maiden name or married name?
</div>
</div>
<div class="collapse" id="collapse_maiden_name">
<div>
<p>For the Notice of Family Claim (Form 1) you need to enter your name as it appears on the marriage certificate. </p>
<p>When you got married, your name didn't automatically change. You're allowed to use your spouse's surname, but a formal name change wasn't necessary.</p>
</div>
</div>
</div>
<div class="question-well">
<h3>Do you go by any other names?</h3>
<div class="btn-radio-group" data-toggle="buttons">
<label class="btn btn-radio">
{% input_field type="radio" name="any_other_name_you" autocomplete="off" value="YES" data_target_id="enter_name" data_reveal_target="true" %} Yes {% input_field type="radio" name="any_other_name_you" autocomplete="off" value="YES" data_target_id="enter_name" data_reveal_target="true" %} Yes
</label> </label>
<label class="btn btn-radio">
<label class="btn btn-radio">
{% input_field type="radio" name="any_other_name_you" autocomplete="off" value="NO" data_target_id="enter_name" data_reveal_target="false" %} No {% input_field type="radio" name="any_other_name_you" autocomplete="off" value="NO" data_target_id="enter_name" data_reveal_target="false" %} No
</label> </label>
</div>
<p>This could be an abbreviaton of your legal name, a maiden name, or any alias's you use for business or legal matters.</p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_other_name" aria-controls="collapse_other_name">
<div>
Why do I need to provide other names that I go by? How will you be using this information?
</div>
</div>
<div class="collapse" id="collapse_other_name">
<div>
<p>The name(s) that you provide will appear on the final court order(s)
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Court Orders Definition</b><br /><br />A record of a decision made by a judge or master that
</div>
<p>This could be an abbreviaton of your legal name, a maiden name, or any alias's you use for business or legal matters.</p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_other_name" aria-controls="collapse_other_name">
<div>
Why do I need to provide other names that I go by? How will you be using this information?
</div>
</div>
<div class="collapse" id="collapse_other_name">
<div>
<p>The name(s) that you provide will appear on the final court order(s)
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true" title="<b>Court Orders Definition</b><br /><br />A record of a decision made by a judge or master that
tells you or your spouse what you must do (or not do). For example: The court has made an order that tells you or your spouse what you must do (or not do). For example: The court has made an order that
your spouse must pay you $250 on a monthly basis to help pay off your combined debt" aria-hidden="true"></i>
. Any names you provide will be used on
the final court order for the purposes of executing or following up on the orders. For example,
if you and your spouse will be dividing property, land titles will likely want to see the name in
the court order match what is on the title. This wold also apply to pensions, RRSPs, etc.
The order for divorce is also used to create linkages between names.</p>
<p>You may want to take a look at the names that you have used on any legal and business agreements/contracts
to ensure you are providing the courts with all variations of your name.</p>
</div>
</div>
<div id="enter_name" hidden>
<h3>Please enter the name</h3>
<!-- This is used for adding a new other name field when add button is clicked -->
<div id="other_names_group" hidden>
{% include "partials/alias_field.html" with name="other_name_you" value=' ' delete_button="true" %}
</div>
<div id="other_names_fields">
{% if other_name_you %}
{% multiple_values_to_list source=other_name_you as values %}
{% for alias_type, value in values %}
{% include "partials/alias_field.html" with name="other_name_you" alias_type=alias_type value=value delete_button="true" %}
{% endfor %}
{% else %}
{% include "partials/alias_field.html" with name="other_name_you" %}
{% endif %}
</div>
<input type="button" id="btn_add_other_names" value="Add name" data-add-for="you"/>
</div>
</div>
<div>
<h3>What was your last name when you were born?</h3>
<div>{% input_field type="text" name="last_name_born_you" class="form-block input-wide response-textbox" %}</div>
<p>This is often referred to as Family name or Surname</p>
</div>
<div>
<h3>What was your last name before you were married?</h3>
{% input_field type="text" name="last_name_before_married_you" class="form-block input-wide response-textbox" %}
<p>This is often referred to as Family name or Surname</p>
</div>
</div>
your spouse must pay you $250 on a monthly basis to help pay off your combined debt" aria-hidden="true"></i> . Any names you provide will be used on the final court order for the purposes of executing
or following up on the orders. For example, if you and your spouse will be dividing property, land titles will likely want to see the name in the court order match what is on the title. This wold also apply to pensions, RRSPs, etc. The
order for divorce is also used to create linkages between names.</p>
<p>You may want to take a look at the names that you have used on any legal and business agreements/contracts to ensure you are providing the courts with all variations of your name.</p>
</div> </div>
</div> </div>
<div id="enter_name" hidden>
<h3>Please enter the name</h3>
<!-- This is used for adding a new other name field when add button is clicked -->
<div id="other_names_group" hidden>
{% include "partials/alias_field.html" with name="other_name_you" value=' ' delete_button="true" %}
</div>
<div id="other_names_fields">
{% if other_name_you %}
{% multiple_values_to_list source=other_name_you as values %}
{% for alias_type, value in values %} {% include "partials/alias_field.html" with name="other_name_you" alias_type=alias_type value=value delete_button="true" %} {% endfor %}
{% else %}
{% include "partials/alias_field.html" with name="other_name_you" %}
{% endif %}
</div>
<input type="button" id="btn_add_other_names" value="Add name" data-add-for="you" />
</div>
</div>
<div class="question-well">
<h3>What was your last name when you were born?</h3>
<div>{% input_field type="text" name="last_name_born_you" class="form-block input-wide response-textbox" %}</div>
<p>This is often referred to as Family name or Surname</p>
</div> </div>
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div>
<h3>When is your birthday?</h3>
<p><span class="date-picker-group">{% input_field type="text" name="birthday_you" class="date-picker" id="birth_date" placeholder="DD/MM/YYYY" %} <i class="fa fa-calendar circle" aria-hidden="true"></i></span></p>
</div>
<div>
<h3>How long have you lived in British Columbia?</h3>
<p>Please select one</p>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other" name="lived_in_bc_you" value="Since birth" %}Since birth</label></div>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other radio_with_textbox" name="lived_in_bc_you" value="Moved to British Columbia on" %}Moved to British Columbia on <span class="date-picker-group">{% input_field type="text" name="moved_to_bc_date_you" id="moved_date" class="date-picker other-textbox input-inline" tabindex="-1" placeholder="DD/MM/YYYY" %} <i class="fa fa-calendar circle" aria-hidden="true"></i></span></label></div>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other" name="lived_in_bc_you" value="Do not live in British Columbia" %}Do not live in British Columbia</label></div>
<p>In order to apply for a divorce in British Columbia, you or your spouse must have been a regular resident in B.C (the legal term is ordinarily resident
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Ordinarily resident</b><br /><br />Unfortunately there is no clear cut definition for the term &quot;ordinarily resident.&quot;<br/><br/>
<div class="question-well">
<h3>What was your last name before you were married?</h3> {% input_field type="text" name="last_name_before_married_you" class="form-block input-wide response-textbox" %}
<p>This is often referred to as Family name or Surname</p>
</div>
<div class="question-well">
<h3>When is your birthday?</h3>
<p><span class="date-picker-group">{% input_field type="text" name="birthday_you" class="date-picker" id="birth_date" placeholder="DD/MM/YYYY" %} <i class="fa fa-calendar circle" aria-hidden="true"></i></span></p>
</div>
<div class="question-well">
<h3>How long have you lived in British Columbia?</h3>
<p>Please select one</p>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other" name="lived_in_bc_you" value="Since birth" %}Since birth</label></div>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other radio_with_textbox" name="lived_in_bc_you" value="Moved to British Columbia on" %}Moved to British Columbia on <span class="date-picker-group">{% input_field type="text" name="moved_to_bc_date_you" id="moved_date" class="date-picker other-textbox input-inline" tabindex="-1" placeholder="DD/MM/YYYY" %} <i class="fa fa-calendar circle" aria-hidden="true"></i></span></label></div>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other" name="lived_in_bc_you" value="Do not live in British Columbia" %}Do not live in British Columbia</label></div>
<p>In order to apply for a divorce in British Columbia, you or your spouse must have been a regular resident in B.C (the legal term is ordinarily resident
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true" title="<b>Ordinarily resident</b><br /><br />Unfortunately there is no clear cut definition for the term &quot;ordinarily resident.&quot;<br/><br/>
&quot;ordinary residence&quot; is not a phrase capable of precise definition. At its simplest level, ordinary residence connotes &quot;ordinary residence&quot; is not a phrase capable of precise definition. At its simplest level, ordinary residence connotes
something more than mere temporary presence in a place. It refers to the place in which a person's lifestyle is centered something more than mere temporary presence in a place. It refers to the place in which a person's lifestyle is centered
and to which the person regularly returns if his or her presence is not continuous.<br/><br/> and to which the person regularly returns if his or her presence is not continuous.<br/><br/>
Ordinarily Resident<ul><li>the place where a person resides in the ordinary course of his or her day to day</li> Ordinarily Resident<ul><li>the place where a person resides in the ordinary course of his or her day to day</li>
<li>you do not lose your ordinary resident in a place when you leave for a temporary purpose (e.g. go to school in <li>you do not lose your ordinary resident in a place when you leave for a temporary purpose (e.g. go to school in
another province)</li></ul><br/>Not an Ordinarily Resident<ul><li>If you have travelled to another place to live and work indefinitely another province)</li></ul><br/>Not an Ordinarily Resident<ul><li>If you have travelled to another place to live and work indefinitely
(even thought you ultimately intends to return to the prior home)</li></ul>" aria-hidden="true"></i>
) for at least one year immediately before starting the proceeding.
</p>
</div>
<div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapseExample" aria-controls="collapseExample">
<div>
Can't remember exact date?
</div>
</div>
<div class="collapse" id="collapseExample">
<div>
<p>If you cannot remember the exact date you moved to B.C, select:</p>
<ul>
<li>the month you moved to B.C.</li>
<li>the last day of that month</li>
<li>year</li>
</ul>
</div>
</div>
</div>
<div style="display: flex">
<form action="{% url 'question_steps' '01_orders' %}">
<input type="submit" value="Back"/>
</form>
<form action="#">
<input type="submit" value="Save"/>
</form>
<form action="{% url 'question_steps' '03_respondent' %}">
<input type="submit" value="Next"/>
</form>
(even thought you ultimately intends to return to the prior home)</li></ul>" aria-hidden="true"></i> ) for at least one year immediately before starting the proceeding.
</p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapseExample" aria-controls="collapseExample">
<div>
Can't remember exact date?
</div> </div>
</div>
</div>
<div class="collapse" id="collapseExample">
<div>
<p>If you cannot remember the exact date you moved to B.C, select:</p>
<ul>
<li>the month you moved to B.C.</li>
<li>the last day of that month</li>
<li>year</li>
</ul>
</div> </div>
</div> </div>
</div> </div>
{% endblock %}
{% block sidebarText %}
<p>The Meaning of "Ordinary Residence" and "Habitual Residence" in the Common Law Provinces in a Family Law Context: <a href="http://www.justice.gc.ca/eng/rp-pr/fl-lf/divorce/rhro_cl/p4.html" target="_blank">http://www.justice.gc.ca/eng/rp-pr/fl-lf/divorce/rhro_cl/p4.html</a></p>
<div style="display: flex">
<form action="{% url 'question_steps' '01_orders' %}">
<input type="submit" value="Back" />
</form>
<form action="#">
<input type="submit" value="Save" />
</form>
<form action="{% url 'question_steps' '03_respondent' %}">
<input type="submit" value="Next" />
</form>
</div>
{% endblock %} {% block sidebarText %}
<p>The Meaning of "Ordinary Residence" and "Habitual Residence" in the Common Law Provinces in a Family Law Context: <a href="http://www.justice.gc.ca/eng/rp-pr/fl-lf/divorce/rhro_cl/p4.html" target="_blank">http://www.justice.gc.ca/eng/rp-pr/fl-lf/divorce/rhro_cl/p4.html</a></p>
{% endblock %} {% endblock %}

+ 152
- 168
edivorce/apps/core/templates/question/03_respondent.html View File

@ -3,181 +3,165 @@
{% block title %}{{ block.super }}: Your Spouse{% endblock %} {% block title %}{{ block.super }}: Your Spouse{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Step 3. Your Spouse</h1>
<h2>Your Spouse's Information</h2>
<div>
<h3>Please enter your spouse's name as it appears on the marriage certificate</h3>
{% input_field type="text" name="name_spouse" class="form-block input-wide response-textbox" %}
<p>This is also know as surname or family name.</p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false"
data-target="#collapse_legal_name" aria-controls="collapse_legal_name">
<div>
Has your spouse changed their legal name since getting married?
</div>
</div>
<div class="collapse" id="collapse_legal_name">
<div>
<p>If either of you has had a legal name change since you were married, put that new name on
your form,
and bring along a copy of the change of name certificate when you file your documents.</p>
</div>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_maiden_name" aria-controls="collapse_maiden_name">
<div>
Should I use their maiden name or married name?
</div>
</div>
<div class="collapse" id="collapse_maiden_name">
<div>
<p>For the Notice of Family Claim (Form 1) you need to enter your spouse's name as it appears on the
marriage certificate. </p>
<p>When you got married, their name didn't automatically change. They're allowed to use your
spouse's surname, but a formal name change wasn't necessary.</p>
</div>
</div>
</div>
<div>
<h3>Does your spouse go by any other names?</h3>
<div class="btn-radio-group" data-toggle="buttons">
<label class="btn btn-radio">
{% input_field type="radio" name="any_other_name_spouse" autocomplete="off" value="YES" data_target_id="enter_name" data_reveal_target="true" %} Yes
</label>
<label class="btn btn-radio">
{% input_field type="radio" name="any_other_name_spouse" autocomplete="off" value="NO" data_target_id="enter_name" data_reveal_target="false" %} No
</label>
</div>
<p>This could be an abbreviaton of your legal name, a maiden name, or any alias's they use for business
or legal matters.</p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_other_name" aria-controls="collapse_other_name">
<div>
Why do I need to provide other names that I go by? How will you be using this
information?
</div>
</div>
<div class="collapse" id="collapse_other_name">
<div>
<p>The name(s) that you provide will appear on the final court order (s). Any names you provide will be
used on the final court order for the purposes of executing or following up on the orders. For example,
if you and your spouse will be dividing property, land titles will likely want to see the name in
the court order match what is on the title. This wold also apply to pensions, RRSPs, etc.
The order for divorce is also used to create linkages between names.</p>
<p>You may want to take a look at the names that you have used on any legal and business
agreements/contracts to ensure you are providing the courts with all variations of your name.</p>
</div>
</div>
<div id="enter_name" hidden>
<h3>Please enter the name</h3>
<!-- This is used for adding a new other name field when add button is clicked -->
<div id="other_names_group" hidden>
{% include "partials/alias_field.html" with name="other_name_spouse" value=' ' delete_button="true" %}
</div>
<div id="other_names_fields">
{% if other_name_spouse %}
{% multiple_values_to_list source=other_name_spouse as values %}
{% for alias_type, value in values %}
{% include "partials/alias_field.html" with name="other_name_spouse" alias_type=alias_type value=value delete_button="true" %}
{% endfor %}
{% else %}
{% include "partials/alias_field.html" with name="other_name_spouse" value='' %}
{% endif %}
</div>
<input type="button" id="btn_add_other_names" value="Add name" data-add-for="spouse"/>
</div>
</div>
<div>
<h3>What was their last name when they were born?</h3>
{% input_field type="text" name="last_name_born_spouse" class="form-block input-wide response-textbox" %}
<p>This is often referred to as Family name or Surname</p>
</div>
<div>
<h3>What was their last name before you were married?</h3>
{% input_field type="text" name="last_name_before_married_spouse" class="form-block input-wide response-textbox" %}
<p>This is often referred to as Family name or Surname</p>
</div>
</div>
<h1><small>Step 3:</small>Your Spouse</h1>
<h2>Your Spouse's Information</h2>
<div class="question-well">
<h3>Please enter your spouse's name as it appears on the marriage certificate</h3>
{% input_field type="text" name="name_spouse" class="form-block input-wide response-textbox" %}
<p>This is also know as surname or family name.</p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false"
data-target="#collapse_legal_name" aria-controls="collapse_legal_name">
<div>
Has your spouse changed their legal name since getting married?
</div>
</div>
<div class="collapse" id="collapse_legal_name">
<div>
<p>If either of you has had a legal name change since you were married, put that new name on
your form,
and bring along a copy of the change of name certificate when you file your documents.</p>
</div>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_maiden_name" aria-controls="collapse_maiden_name">
<div>
Should I use their maiden name or married name?
</div>
</div>
<div class="collapse" id="collapse_maiden_name">
<div>
<p>For the Notice of Family Claim (Form 1) you need to enter your spouse's name as it appears on the
marriage certificate. </p>
<p>When you got married, their name didn't automatically change. They're allowed to use your
spouse's surname, but a formal name change wasn't necessary.</p>
</div>
</div>
</div>
<div class="question-well">
<h3>Does your spouse go by any other names?</h3>
<div class="btn-radio-group" data-toggle="buttons">
<label class="btn btn-radio">
{% input_field type="radio" name="any_other_name_spouse" autocomplete="off" value="YES" data_target_id="enter_name" data_reveal_target="true" %} Yes
</label>
<label class="btn btn-radio">
{% input_field type="radio" name="any_other_name_spouse" autocomplete="off" value="NO" data_target_id="enter_name" data_reveal_target="false" %} No
</label>
</div>
<p>This could be an abbreviaton of your legal name, a maiden name, or any alias's they use for business
or legal matters.</p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_other_name" aria-controls="collapse_other_name">
<div>
Why do I need to provide other names that I go by? How will you be using this
information?
</div>
</div>
<div class="collapse" id="collapse_other_name">
<div>
<p>The name(s) that you provide will appear on the final court order (s). Any names you provide will be
used on the final court order for the purposes of executing or following up on the orders. For example,
if you and your spouse will be dividing property, land titles will likely want to see the name in
the court order match what is on the title. This wold also apply to pensions, RRSPs, etc.
The order for divorce is also used to create linkages between names.</p>
<p>You may want to take a look at the names that you have used on any legal and business
agreements/contracts to ensure you are providing the courts with all variations of your name.</p>
</div>
</div>
<div id="enter_name" hidden>
<h3>Please enter the name</h3>
<!-- This is used for adding a new other name field when add button is clicked -->
<div id="other_names_group" hidden>
{% include "partials/alias_field.html" with name="other_name_spouse" value=' ' delete_button="true" %}
</div>
<div id="other_names_fields">
{% if other_name_spouse %}
{% multiple_values_to_list source=other_name_spouse as values %}
{% for alias_type, value in values %}
{% include "partials/alias_field.html" with name="other_name_spouse" alias_type=alias_type value=value delete_button="true" %}
{% endfor %}
{% else %}
{% include "partials/alias_field.html" with name="other_name_spouse" value='' %}
{% endif %}
</div> </div>
<input type="button" id="btn_add_other_names" value="Add name" data-add-for="spouse"/>
</div> </div>
</div>
<div class="question-well">
<h3>What was their last name when they were born?</h3>
{% input_field type="text" name="last_name_born_spouse" class="form-block input-wide response-textbox" %}
<p>This is often referred to as Family name or Surname</p>
</div> </div>
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div>
<h3>When is your spouse's birthday?</h3>
<p><span class="date-picker-group">{% input_field type="text" name="birthday_spouse" class="date-picker" id="birth_date" placeholder="DD/MM/YYYY" %} <i class="fa fa-calendar circle" aria-hidden="true"></i></span></p>
</div>
<div>
<h3>How long has your spouse lived in British Columbia?</h3>
<p>Please select one</p>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other" name="lived_in_bc_spouse" value="Since birth" %}Since birth</label></div>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other radio_with_textbox" name="lived_in_bc_spouse" value="Moved to British Columbia on" %}Moved to British Columbia on <span class="date-picker-group">{% input_field type="text" name="moved_to_bc_date_spouse" id="moved_date" class="date-picker other-textbox input-inline" tabindex="-1" placeholder="DD/MM/YYYY" %} <i class="fa fa-calendar circle" aria-hidden="true"></i></span></label></div>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other" name="lived_in_bc_spouse" value="Do not live in British Columbia" %}Do not live in British Columbia</label></div>
<p>In order to apply for a divorce in British Columbia, you or your spouse must have been a regular resident in B.C (the legal term is ordinarily resident
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Ordinarily resident</b><br /><br />Unfortunately there is no clear cut definition for the term &quot;ordinarily resident.&quot;<br/><br/>
&quot;ordinary residence&quot; is not a phrase capable of precise definition. At its simplest level, ordinary residence connotes
something more than mere temporary presence in a place. It refers to the place in which a person's lifestyle is centered
and to which the person regularly returns if his or her presence is not continuous.<br/><br/>
Ordinarily Resident<ul><li>the place where a person resides in the ordinary course of his or her day to day</li>
<li>you do not lose your ordinary resident in a place when you leave for a temporary purpose (e.g. go to school in
another province)</li></ul><br/>Not an Ordinarily Resident<ul><li>If you have travelled to another place to live and work indefinitely
(even thought you ultimately intends to return to the prior home)</li></ul>" aria-hidden="true"></i>
) for at least one year immediately before starting the proceeding.
</p>
</div>
<div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapseExample" aria-controls="collapseExample">
<div>
Can't remember exact date?
</div>
</div>
<div class="collapse" id="collapseExample">
<div>
<p>If you cannot remember the exact date you moved to B.C, select:</p>
<ul>
<li>the month you moved to B.C.</li>
<li>the last day of that month</li>
<li>year</li>
</ul>
</div>
</div>
</div>
<div style="display: flex">
<form action="{% url 'question_steps' '02_claimant' %}">
<input type="submit" value="Back"/>
</form>
<form action="#">
<input type="submit" value="Save"/>
</form>
<form action="{% url 'question_steps' '04_marriage' %}">
<input type="submit" value="Next"/>
</form>
</div>
</div>
<div class="question-well">
<h3>What was their last name before you were married?</h3>
{% input_field type="text" name="last_name_before_married_spouse" class="form-block input-wide response-textbox" %}
<p>This is often referred to as Family name or Surname</p>
</div>
<div class="question-well">
<h3>When is your spouse's birthday?</h3>
<p><span class="date-picker-group">{% input_field type="text" name="birthday_spouse" class="date-picker" id="birth_date" placeholder="DD/MM/YYYY" %} <i class="fa fa-calendar circle" aria-hidden="true"></i></span></p>
</div>
<div class="question-well">
<h3>How long has your spouse lived in British Columbia?</h3>
<p>Please select one</p>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other" name="lived_in_bc_spouse" value="Since birth" %}Since birth</label></div>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other radio_with_textbox" name="lived_in_bc_spouse" value="Moved to British Columbia on" %}Moved to British Columbia on <span class="date-picker-group">{% input_field type="text" name="moved_to_bc_date_spouse" id="moved_date" class="date-picker other-textbox input-inline" tabindex="-1" placeholder="DD/MM/YYYY" %} <i class="fa fa-calendar circle" aria-hidden="true"></i></span></label></div>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other" name="lived_in_bc_spouse" value="Do not live in British Columbia" %}Do not live in British Columbia</label></div>
<p>In order to apply for a divorce in British Columbia, you or your spouse must have been a regular resident in B.C (the legal term is ordinarily resident
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Ordinarily resident</b><br /><br />Unfortunately there is no clear cut definition for the term &quot;ordinarily resident.&quot;<br/><br/>
&quot;ordinary residence&quot; is not a phrase capable of precise definition. At its simplest level, ordinary residence connotes
something more than mere temporary presence in a place. It refers to the place in which a person's lifestyle is centered
and to which the person regularly returns if his or her presence is not continuous.<br/><br/>
Ordinarily Resident<ul><li>the place where a person resides in the ordinary course of his or her day to day</li>
<li>you do not lose your ordinary resident in a place when you leave for a temporary purpose (e.g. go to school in
another province)</li></ul><br/>Not an Ordinarily Resident<ul><li>If you have travelled to another place to live and work indefinitely
(even thought you ultimately intends to return to the prior home)</li></ul>" aria-hidden="true"></i>
) for at least one year immediately before starting the proceeding.
</p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapseExample" aria-controls="collapseExample">
<div>
Can't remember exact date?
</div> </div>
</div> </div>
<div class="collapse" id="collapseExample">
<div>
<p>If you cannot remember the exact date you moved to B.C, select:</p>
<ul>
<li>the month you moved to B.C.</li>
<li>the last day of that month</li>
<li>year</li>
</ul>
</div>
</div>
</div>
<div style="display: flex">
<form action="{% url 'question_steps' '02_claimant' %}">
<input type="submit" value="Back"/>
</form>
<form action="#">
<input type="submit" value="Save"/>
</form>
<form action="{% url 'question_steps' '04_marriage' %}">
<input type="submit" value="Next"/>
</form>
</div> </div>
{% endblock %} {% endblock %}
{% block sidebar %}{% endblock %} {% block sidebar %}{% endblock %}

+ 0
- 1
edivorce/apps/core/templates/question/04_marriage.html View File

@ -106,7 +106,6 @@
</form> </form>
</div> </div>
{% endblock %} {% endblock %}
{% block sidebarText %} {% block sidebarText %}


+ 63
- 74
edivorce/apps/core/templates/question/05_separation.html View File

@ -4,89 +4,78 @@
{% block title %}{{ block.super }}: Reason For Divorce{% endblock %} {% block title %}{{ block.super }}: Reason For Divorce{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Step 5: Your Separation</h1>
<div>
<p>
For this next question, we need to confirm that there is no chance you and your spouse will be getting back together.
By selecting "I agree" this shows the court that you and your spouse have thoroughly thought out your request for divorce.
</p>
<h3>There is no possibility my spouse and I will get back together (reconciliation).</h3>
<div class="radio"><label>{% input_field type="radio" name="no_reconciliation_possible" value="agree" %}I agree</label></div>
<div class="radio"><label>{% input_field type="radio" name="no_reconciliation_possible" value="disagree" %}I disagree</label></div>
</div>
</div>
</div>
</div>
<h1><small>Step 5:</small>Your Separation</h1>
<div class="question-well">
<p>
For this next question, we need to confirm that there is no chance you and your spouse will be getting back together.
By selecting "I agree" this shows the court that you and your spouse have thoroughly thought out your request for divorce.
</p>
<h3>There is no possibility my spouse and I will get back together (reconciliation).</h3>
<div class="radio"><label>{% input_field type="radio" name="no_reconciliation_possible" value="agree" %}I agree</label></div>
<div class="radio"><label>{% input_field type="radio" name="no_reconciliation_possible" value="disagree" %}I disagree</label></div>
</div> </div>
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<!-- TODO: Confirm with JA and remove this part-->
<div hidden>
<div>
<p><em>Ok, this next questions uses some legal terminology so we'll help you understand what is being asked.</em></p>
<p><em>We’re legally required to ask that you confirm that you and (!!insert spouse name) haven’t lied or
tried to deceive the court in any way. This is called “collusion”. An example of collusion is both
of you saying that you’ve been separated for longer than you actually have been.</em></p>
<!-- TODO: Confirm with JA and remove this part-->
<div class="question-well" hidden>
<div>
<p><em>Ok, this next questions uses some legal terminology so we'll help you understand what is being asked.</em></p>
<p><em>Please confirm that there’s been no collusion in this claim for divorce. The court can refuse to
grant a divorce if you and your spouse have not been honest (collusion) about your marriage and
separation details.</em></p>
</div>
<p><em>We’re legally required to ask that you confirm that you and (!!insert spouse name) haven’t lied or
tried to deceive the court in any way. This is called “collusion”. An example of collusion is both
of you saying that you’ve been separated for longer than you actually have been.</em></p>
<div>
<h3>There has been no collusion
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>COURT REGISTRY</b><br /><br />A central office (for the B.C. Supreme Court) at which
the court files for each court proceeding in that district are maintained, and at which legal documents,
can be filed, searched for and reviewed" aria-hidden="true"></i>,
as defined in section 11(4) of the Divorce Act (Canada), in relation to this claim for divorce.</h3>
<div class="radio"><label>{% input_field type="radio" name="no_collusion" value="agree" %}I agree</label></div>
<div class="radio"><label>{% input_field type="radio" name="no_collusion" value="disagree" %}I disagree</label></div>
</div>
</div>
<p><em>Please confirm that there’s been no collusion in this claim for divorce. The court can refuse to
grant a divorce if you and your spouse have not been honest (collusion) about your marriage and
separation details.</em></p>
</div>
<div>
<p>
We’re legally required to ask that you confirm that you and {% if responses.name_spouse %} {{ responses.name_spouse }} {% else %} your spouse {% endif %}
haven’t lied or tried to deceive the court in any way. This is called “collusion
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Collusion</b><br /><br />Basically this statement confirms that you and your spouse haven’t lied or tried to deceive the court in any way
(for example, saying that you’ve been separated for longer than you have been). It is a legal requirement that you confirm you are providing accurate
and complete information. Apologies if you are offended with this question." aria-hidden="true"></i>
”. An example of collusion is both
of you saying that you’ve been separated for longer than you actually have been.
</p>
<div class="checkbox-group">
<div class="checkbox">
<label>
{% input_field type="checkbox" name="no_collusion" value="No collusion" %} My spouse and I have not engaged in collusion to deceive the court in any way.
</label>
</div>
</div>
</div>
<div>
<h3>There has been no collusion
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>COURT REGISTRY</b><br /><br />A central office (for the B.C. Supreme Court) at which
the court files for each court proceeding in that district are maintained, and at which legal documents,
can be filed, searched for and reviewed" aria-hidden="true"></i>,
as defined in section 11(4) of the Divorce Act (Canada), in relation to this claim for divorce.</h3>
<div class="radio"><label>{% input_field type="radio" name="no_collusion" value="agree" %}I agree</label></div>
<div class="radio"><label>{% input_field type="radio" name="no_collusion" value="disagree" %}I disagree</label></div>
</div>
</div>
<div style="display: flex">
<form action="{% url 'question_steps' '04_marriage' %}">
<input type="submit" value="Back"/>
</form>
<form action="#">
<input type="submit" value="Save"/>
</form>
<form action="{% url 'question_steps' '06_support' %}">
<input type="submit" value="Next"/>
</form>
</div>
</div>
<div class="question-well">
<p>
We’re legally required to ask that you confirm that you and {% if responses.name_spouse %} {{ responses.name_spouse }} {% else %} your spouse {% endif %}
haven’t lied or tried to deceive the court in any way. This is called “collusion
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Collusion</b><br /><br />Basically this statement confirms that you and your spouse haven’t lied or tried to deceive the court in any way
(for example, saying that you’ve been separated for longer than you have been). It is a legal requirement that you confirm you are providing accurate
and complete information. Apologies if you are offended with this question." aria-hidden="true"></i>
”. An example of collusion is both
of you saying that you’ve been separated for longer than you actually have been.
</p>
<div class="checkbox-group">
<div class="checkbox">
<label>
{% input_field type="checkbox" name="no_collusion" value="No collusion" %} My spouse and I have not engaged in collusion to deceive the court in any way.
</label>
</div> </div>
</div> </div>
</div> </div>
<div style="display: flex">
<form action="{% url 'question_steps' '04_marriage' %}">
<input type="submit" value="Back"/>
</form>
<form action="#">
<input type="submit" value="Save"/>
</form>
<form action="{% url 'question_steps' '06_support' %}">
<input type="submit" value="Next"/>
</form>
</div>
{% endblock %} {% endblock %}
{% block sidebarText %} {% block sidebarText %}
<div> <div>


+ 122
- 132
edivorce/apps/core/templates/question/06_support.html View File

@ -4,145 +4,135 @@
{% block title %}{{ block.super }}: Declarations{% endblock %} {% block title %}{{ block.super }}: Declarations{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Step 6. Spousal Support</h1>
<div>
<div>
<p>Spousal support is paid by one spouse to financially support the other spouse after separation, under an agreement or order
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="auto" data-html="true" data-trigger="click"
title="<b>Order</b><br />A type of court ruling a judge or master makes that sets out what you must do or not do." aria-hidden="true"></i>.</p>
<p>The purpose of spousal support is to help meet the on-going financial needs of a financially dependent spouse for a defined period of time."</p>
<p>For more information, please see the <a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/spousal_support.php">fact sheet Spousal Support</a> by the Legal Services Society.</p>
</div>
<h3>You and your spouse are asking for an order
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="auto" data-html="true" data-trigger="click"
title="<b>Order</b><br />A type of court ruling a judge or master makes that sets out what you must do or not do." aria-hidden="true"></i>
for spousal support as follows:</h3>
{% input_field type="textarea" name="spouse_support_details" rows="8" cols="65" class="response-textarea" %}
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_support_amount" aria-controls="collapse_support_amount">
<div>
How do I figure out the amount of support?
</div>
</div>
<div class="collapse" id="collapse_support_amount">
<div>
<p>The amount and duration of spousal support is determined after considering the circumstances of each spouse, including:</p>
<ul>
<li>Your financial situation and the financial situation of your former spouse</li>
<li>How long your relationship lasted</li>
<li>The roles and functions of each spouse during the relationship, and</li>
<li>What the person who is asking for spousal support needs in order to become self-sufficient, such as extra training or education.</li>
</ul>
<p>
<a href="MySupportCalculator.ca" target="_blank">MySupportCalculator.ca</a> is a website with a support calculator which can give you a rough estimate of spousal support." The guidelines and calculations are complicated so you may want to contact a family law lawyer or a family justice counesllor for help.
For more information, please see the fact sheet <a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/spousal_support.php" target="_blank">Spousal Support</a> by the Legal Services Society.
</p>
</div>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_support_info" aria-controls="collapse_support_info">
<div>
What detail/information do I need to provide?
</div>
</div>
<div class="collapse" id="collapse_support_info">
<div>
<p>Typically, Spousal Support is resolved out of court and is detailed in a separation agreement.</p>
<p>Many couples come to an agreement about spousal support outside of court and capture the details in a
<a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/spousal_support.php" target="_blank">separation agreement</a>.
"Agreements that are filed with the court can be enforced — they have the same force as a court order.
They can also be set aside (cancelled) if the situation changes.
</p>
<p>If you're applying for an undefended divorce and asking for spousal support, make sure you fill in:</p>
<ul>
<li>the amount of support you want, and</li>
<li>an amount for your spouse's income. If you aren't sure, make your best estimate.</li>
</ul>
<p>If you don't provide this information, the court may not make an order.</p>
<p>
If you're married, you must claim spousal support within two years of the divorce judgment. If you were not married,
but lived in a marriage-like relationship for two years or more, you must apply within two years of your separation.
</p>
<p>
For help on what factors to consider, and details to include in your spousal support agreement, refer to the online tool,
<a href="http://www.familylaw.lss.bc.ca/guides/separation/supportSpouse.php" target="_blank">How to Write Your Own Separation Agreement</a>,
produced by the Legal Services Society.
</p>
<p>
You may also find Clicklaw's wikibook on <a href="http://wiki.clicklaw.bc.ca/index.php/Spousal_Support" target="_blank">Spousal Support</a> helpful.
This wikibook is a chapter from the JP Boyd on <a href="http://wiki.clicklaw.bc.ca/index.php?title=JP_Boyd_on_Family_Law" target="_blank">Family Law wikibook</a>.
</p>
</div>
</div>
</div>
</div>
<h1><small>Step 6:</small>Spousal Support</h1>
<div class="intro">
<p>Spousal support is paid by one spouse to financially support the other spouse after separation, under <span class="tooltip-link" data-toggle="tooltip" data-placement="auto" data-html="true" data-trigger="click"
title="<b>Order</b><br />A type of court ruling a judge or master makes that sets out what you must do or not do." >an agreement or order
<i class="fa fa-question-circle" aria-hidden="true"></i></span>.</p>
<p>The purpose of spousal support is to help meet the on-going financial needs of a financially dependent spouse for a defined period of time."</p>
<p>For more information, please see the <a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/spousal_support.php">fact sheet Spousal Support</a> by the Legal Services Society.</p>
</div>
<div class="question-well">
<h3>You and your spouse are asking for an <span class="tooltip-link" data-toggle="tooltip" data-placement="auto" data-html="true" data-trigger="click"
title="<b>Order</b><br />A type of court ruling a judge or master makes that sets out what you must do or not do.">order
<i class="fa fa-question-circle" aria-hidden="true"></i></span>
for spousal support as follows:</h3>
{% input_field type="textarea" name="spouse_support_details" rows="8" cols="65" class="response-textarea" %}
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_support_amount" aria-controls="collapse_support_amount">
<div>
How do I figure out the amount of support?
</div>
</div>
<div class="collapse" id="collapse_support_amount">
<div>
<p>The amount and duration of spousal support is determined after considering the circumstances of each spouse, including:</p>
<ul>
<li>Your financial situation and the financial situation of your former spouse</li>
<li>How long your relationship lasted</li>
<li>The roles and functions of each spouse during the relationship, and</li>
<li>What the person who is asking for spousal support needs in order to become self-sufficient, such as extra training or education.</li>
</ul>
<p>
<a href="MySupportCalculator.ca" target="_blank">MySupportCalculator.ca</a> is a website with a support calculator which can give you a rough estimate of spousal support." The guidelines and calculations are complicated so you may want to contact a family law lawyer or a family justice counesllor for help.
For more information, please see the fact sheet <a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/spousal_support.php" target="_blank">Spousal Support</a> by the Legal Services Society.
</p>
</div>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_support_info" aria-controls="collapse_support_info">
<div>
What detail/information do I need to provide?
</div>
</div>
<div class="collapse" id="collapse_support_info">
<div>
<p>Typically, Spousal Support is resolved out of court and is detailed in a separation agreement.</p>
<p>Many couples come to an agreement about spousal support outside of court and capture the details in a
<a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/spousal_support.php" target="_blank">separation agreement</a>.
"Agreements that are filed with the court can be enforced — they have the same force as a court order.
They can also be set aside (cancelled) if the situation changes.
</p>
<p>If you're applying for an undefended divorce and asking for spousal support, make sure you fill in:</p>
<ul>
<li>the amount of support you want, and</li>
<li>an amount for your spouse's income. If you aren't sure, make your best estimate.</li>
</ul>
<p>If you don't provide this information, the court may not make an order.</p>
<p>
If you're married, you must claim spousal support within two years of the divorce judgment. If you were not married,
but lived in a marriage-like relationship for two years or more, you must apply within two years of your separation.
</p>
<p>
For help on what factors to consider, and details to include in your spousal support agreement, refer to the online tool,
<a href="http://www.familylaw.lss.bc.ca/guides/separation/supportSpouse.php" target="_blank">How to Write Your Own Separation Agreement</a>,
produced by the Legal Services Society.
</p>
<p>
You may also find Clicklaw's wikibook on <a href="http://wiki.clicklaw.bc.ca/index.php/Spousal_Support" target="_blank">Spousal Support</a> helpful.
This wikibook is a chapter from the JP Boyd on <a href="http://wiki.clicklaw.bc.ca/index.php?title=JP_Boyd_on_Family_Law" target="_blank">Family Law wikibook</a>.
</p>
</div> </div>
</div> </div>
</div> </div>
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div>
<h3>Please indicate which act you are asking for support under.</h3>
<div class="radio"><label>{% input_field type="radio" name="spouse_support_act" value="divorce" data_target_id="family_law_time_limit" data_reveal_target="false" %}the Divorce Act (Canada)</label></div>
<div class="radio"><label>{% input_field type="radio" name="spouse_support_act" value="family" data_target_id="family_law_time_limit" data_reveal_target="true" %}the Family Law Act</label></div>
<div class="information-message bg-danger" id="family_law_time_limit" hidden>
<h2>Time limit to apply for court order</h2>
<p>
If you were married, you must apply for spousal support under the Family Law Act within two years after you get an order for divorce. If you are applying for spousal support under the Divorce Act, you do not have a time limit.
</p>
<p>
If you were unmarried, and you qualify for spousal support, you must apply within two years of the date you separated.
</p>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_support_act" aria-controls="collapse_support_act">
<div>
How do I know which act applies to my situation?
</div>
</div>
<div class="collapse" id="collapse_support_act">
<div>
<p>Ok, you may be thinking, how the heck am I supposed to know which act (a written law) applies. Let's see if we can help you identify which act best fits with your circumstances/situation.</p>
<p><b>If you are not married (common law) > Family Law Act</b><br/>
If you were never married, you must use the Family Law Act. Provincial and territorial laws apply when unmarried couples separate or when married couples separate but do not pursue a divorce
</p>
<p><b>If you are Married > Family Law Act or Divorce Act</b><br/>
If you're married, you have a choice.The federal Divorce Act generally applies when parents are divorcing. Provincial and territorial laws apply when married couples separate but do not pursue a divorce
</p>
<p>
For more information on
<a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/what_laws_apply.php" target="_blank">which laws apply</a> to your situation please refer to the Legal Services Society web site.
</p>
</div>
</div>
</div>
<div style="display: flex">
<form action="{% url 'question_steps' '05_separation' %}">
<input type="submit" value="Back"/>
</form>
<form action="#">
<input type="submit" value="Save"/>
</form>
<form action="{% url 'question_steps' '07_property' %}">
<input type="submit" value="Next"/>
</form>
</div>
</div>
<div class="question-well">
<h3>Please indicate which act you are asking for support under.</h3>
<div class="radio"><label>{% input_field type="radio" name="spouse_support_act" value="divorce" data_target_id="family_law_time_limit" data_reveal_target="false" %}the Divorce Act (Canada)</label></div>
<div class="radio"><label>{% input_field type="radio" name="spouse_support_act" value="family" data_target_id="family_law_time_limit" data_reveal_target="true" %}the Family Law Act</label></div>
<div class="information-message bg-danger" id="family_law_time_limit" hidden>
<h2>Time limit to apply for court order</h2>
<p>
If you were married, you must apply for spousal support under the Family Law Act within two years after you get an order for divorce. If you are applying for spousal support under the Divorce Act, you do not have a time limit.
</p>
<p>
If you were unmarried, and you qualify for spousal support, you must apply within two years of the date you separated.
</p>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_support_act" aria-controls="collapse_support_act">
<div>
How do I know which act applies to my situation?
</div>
</div>
<div class="collapse" id="collapse_support_act">
<div>
<p>Ok, you may be thinking, how the heck am I supposed to know which act (a written law) applies. Let's see if we can help you identify which act best fits with your circumstances/situation.</p>
<p><b>If you are not married (common law) > Family Law Act</b><br/>
If you were never married, you must use the Family Law Act. Provincial and territorial laws apply when unmarried couples separate or when married couples separate but do not pursue a divorce
</p>
<p><b>If you are Married > Family Law Act or Divorce Act</b><br/>
If you're married, you have a choice.The federal Divorce Act generally applies when parents are divorcing. Provincial and territorial laws apply when married couples separate but do not pursue a divorce
</p>
<p>
For more information on
<a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/what_laws_apply.php" target="_blank">which laws apply</a> to your situation please refer to the Legal Services Society web site.
</p>
</div> </div>
</div> </div>
</div> </div>
<div style="display: flex">
<form action="{% url 'question_steps' '05_separation' %}">
<input type="submit" value="Back"/>
</form>
<form action="#">
<input type="submit" value="Save"/>
</form>
<form action="{% url 'question_steps' '07_property' %}">
<input type="submit" value="Next"/>
</form>
</div>
{% endblock %} {% endblock %}
{% block sidebarText %} {% block sidebarText %}


+ 127
- 155
edivorce/apps/core/templates/question/07_property.html View File

@ -1,175 +1,147 @@
{% extends 'base.html' %} {% extends 'base.html' %}
{% load input_field %} {% load input_field %}
{% block title %}{{ block.super }}: Application Location{% endblock %} {% block title %}{{ block.super }}: Application Location{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Step 7. Property and Debt</h1>
<div>
<p>After you separate, the law says that all family property
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Family property</b><br /><br />The assest acquired by either spouse during the course of the relationship,
plus any increase in the value of excluded property. The law assumes that you're both entitled to an equal share of
family property unless an equal division would be significantly unfair." aria-hidden="true"></i>
and family debt
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Family debt</b><br /><br />Money owned to others accumulated during a relationship or to maintain
family property after separation. The law assumes that both spouses are equally responsible for the debt
unless an equal division would be &quot;significantly unfair.&quot;" aria-hidden="true"></i>
must be divided equally between you and your spouse, unless you have an agreement
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>Family debt</b><br /><br />A written document that sets out how you and your spouse have agreed
to deal with parenting, support, and/or property." aria-hidden="true"></i>
that says you'll divide them differently.
</p>
<p>Family property is everything either you or your spouse own together or separately on the date you separate. It includes:</p>
<ul>
<li>the family home</li>
<li>RRSPs</li>
<li>investments</li>
<li>bank accounts</li>
<li>insurance policies</li>
<li>pensions</li>
<li>an interest in a business</li>
</ul>
<p>It doesn't matter whose name the property is in.</p>
<p>
See <a href="http://www.bclaws.ca/EPLibraries/bclaws_new/document/ID/freeside/11025_05#section84" target="_blank">section 84 of the Family Law Act</a>
for more about what counts as family property.
</p>
</div>
<div>
<h3>How have you and {% if name_spouse %} {{ name_spouse }} {% else %} your spouse {% endif %} agreed to deal with your property and debt?</h3>
<div class="radio"><label>{% input_field type="radio" name="deal_with_property_debt" value="equal division" data_target_id="property_debt_division_method" data_reveal_target="false" %}<b>Equal division</b> of family property and debt</label></div>
<div class="radio"><label>{% input_field type="radio" name="deal_with_property_debt" value="unequal division" data_target_id="property_debt_division_method" data_reveal_target="true" %}<b>Unequal division</b> of family property and family debt</label></div>
<p><em>Note: the court will only order an unequal division when an equal division is significantly unfair.</em></p>
<h1><small>Step 7:</small>Property and Debt</h1>
<div class="intro">
<p>After you separate, the law says that all <span class="tooltip-link" data-toggle="tooltip" data-placement="right" data-html="true" title="<b>Family property</b><br /><br />The assest acquired by either spouse during the course of the relationship,
plus any increase in the value of excluded property. The law assumes that you're both entitled to an equal share of family property unless an equal division would be significantly unfair."> family property
<i class="fa fa-question-circle" aria-hidden="true"></i></span> and <span class="tooltip-link" data-toggle="tooltip" data-placement="right" data-html="true" title="<b>Family debt</b><br /><br />Money owned to others accumulated during a relationship or to maintain
family property after separation. The law assumes that both spouses are equally responsible for the debt
unless an equal division would be &quot;significantly unfair.&quot;"> family debt
<i class="fa fa-question-circle" aria-hidden="true"></i></span> must be divided equally between you and your spouse, unless you have<span class="tooltip-link" data-toggle="tooltip" data-placement="right" data-html="true" title="<b>Family debt</b><br /><br />A written document that sets out how you and your spouse have agreed
to deal with parenting, support, and/or property." > an agreement
<i class="fa fa-question-circle" aria-hidden="true"></i></span> that says you'll divide them differently.
</p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_unequal_division" aria-controls="collapse_unequal_division">
<div>
When can property be divided unequally?
</div>
</div>
<div class="collapse" id="collapse_unequal_division">
<div>
<p>A court will divide family property or debt unequally only if it would be “significantly unfair” to divide it equally. This means that a court will not order an unequal division in most cases. The court can look at a number of factors when deciding whether to divide property or debt unequally.</p>
<p>As well, a couple can divide their property or debt unequally by making an agreement.</p>
<p>
See
<a href="http://www.bclaws.ca/EPLibraries/bclaws_new/document/ID/freeside/11025_05#section95" target="_blank">section 95</a> of the Family Law Act for more about unequal division of property and debt.
</p>
</div>
</div>
<p>Family property is everything either you or your spouse own together or separately on the date you separate. It includes:</p>
<ul>
<li>the family home</li>
<li>RRSPs</li>
<li>investments</li>
<li>bank accounts</li>
<li>insurance policies</li>
<li>pensions</li>
<li>an interest in a business</li>
</ul>
<p>It doesn't matter whose name the property is in.</p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_common_law_division" aria-controls="collapse_common_law_division">
<div>
How is property and debt divided when a common law relationship ends?
</div>
</div>
<div class="collapse" id="collapse_common_law_division">
<div>
<p>For dividing property and debts, couples who have lived together in a marriage-like relationship for two years are treated like married couples. This means you equally share all the property you acquired during the relationship. If you bought the house while you were in a marriage-like relationship, it doesn't matter who paid the down payment — the house is considered family property and you'll have to divide it equally. (If either of you owned property that was bought before the relationship, you have to share the amount by which the value of the property increased since you started living together.)</p>
<p>However, if applying the rule would result in significant unfairness, a judge can order a division that's not 50/50.</p>
</div>
</div>
<p>
See <a href="http://www.bclaws.ca/EPLibraries/bclaws_new/document/ID/freeside/11025_05#section84" target="_blank">section 84 of the Family Law Act</a> for more about what counts as family property.
</p>
</div>
{% if married_marriage_like == 'Living together in a marriage like relationship' %}
<div class="information-message bg-danger">
<p>In order to be considered a spouse for the purposes of dividing property or debt you must have lived together in a marriage-like relationship for at least two years.</p>
<p>Under the law, the start date of a spousal relationship is the day two individuals begin living together in a marriage-like relationship, or the day they were married, whichever is first. The start date of a spousal relationship determines when rights or responsibilities start under the Family Law Act, particularly respecting property division.</p>
</div>
{% endif %}
</div>
<div id="property_debt_division_method" hidden>
<h3>Please describe how you and your spouse plan to divide your property, assets and your debts. </h3>
<p>Because the division of family property and debt can be complex we recommend you get
<a href="http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice/who-can-help/lawyers" target="_blank">legal advice</a>
before you make any final decisions.
</p>
<div class="question-well">
<h3>How have you and {% if name_spouse %} {{ name_spouse }} {% else %} your spouse {% endif %} agreed to deal with your property and debt?</h3>
<div class="radio"><label>{% input_field type="radio" name="deal_with_property_debt" value="equal division" data_target_id="property_debt_division_method" data_reveal_target="false" %}<b>Equal division</b> of family property and debt</label></div>
<div class="radio"><label>{% input_field type="radio" name="deal_with_property_debt" value="unequal division" data_target_id="property_debt_division_method" data_reveal_target="true" %}<b>Unequal division</b> of family property and family debt</label></div>
<p><em>Note: the court will only order an unequal division when an equal division is significantly unfair.</em></p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_deal_property" aria-controls="collapse_deal_property">
<div>
Where to find out more about dealing with Property and Debt
</div>
</div>
<div class="collapse" id="collapse_deal_property">
<div>
<p>The fact sheet Dealing With Debts After Separation (for Married and Common-law Couples) by the Legal Services Society answers a range of questions including:</p>
<ul>
<li>What is family property?</li>
<li>What about property one of us owned before we got together?</li>
<li>Can creditors force me to pay back my ex-spouse's debts?</li>
</ul>
<p>The Family Law web site has an online separation agreement tool that details some of the items to consider when
<a href="http://www.familylaw.lss.bc.ca/guides/separation/property.php" target="_blank">dividing property</a> and
<a href="http://www.familylaw.lss.bc.ca/guides/separation/debt.php" target="_blank">debt</a>.</p>
</div>
</div>
{% input_field type="textarea" name="how_to_divide_property_debt" rows="8" cols="65" class="response-textarea" %}
</div>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_unequal_division" aria-controls="collapse_unequal_division">
<div>
When can property be divided unequally?
</div>
</div>
<div class="collapse" id="collapse_unequal_division">
<div>
<p>A court will divide family property or debt unequally only if it would be “significantly unfair” to divide it equally. This means that a court will not order an unequal division in most cases. The court can look at a number of factors when
deciding whether to divide property or debt unequally.</p>
<p>As well, a couple can divide their property or debt unequally by making an agreement.</p>
<p>
See
<a href="http://www.bclaws.ca/EPLibraries/bclaws_new/document/ID/freeside/11025_05#section95" target="_blank">section 95</a> of the Family Law Act for more about unequal division of property and debt.
</p>
</div> </div>
</div> </div>
</div>
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<div>
<h3>Other Property Claims</h3>
<p>This section is about excluded property - e.g. property owned by the respondent at the time you moved in together, and gifts or inheritances the respondent received. Compensation is cash instead of ownership of your share of the property.</p>
{% input_field type="textarea" name="other_property_claims" rows="8" cols="65" class="response-textarea" %}
</div>
<div style="display: flex">
<form action="{% url 'question_steps' '06_support' %}">
<input type="submit" value="Back"/>
</form>
<form action="#">
<input type="submit" value="Save"/>
</form>
<form action="{% url 'question_steps' '08_other_orders' %}">
<input type="submit" value="Next"/>
</form>
</div>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_common_law_division" aria-controls="collapse_common_law_division">
<div>
How is property and debt divided when a common law relationship ends?
</div>
</div>
<div class="collapse" id="collapse_common_law_division">
<div>
<p>For dividing property and debts, couples who have lived together in a marriage-like relationship for two years are treated like married couples. This means you equally share all the property you acquired during the relationship. If you bought
the house while you were in a marriage-like relationship, it doesn't matter who paid the down payment — the house is considered family property and you'll have to divide it equally. (If either of you owned property that was bought before
the relationship, you have to share the amount by which the value of the property increased since you started living together.)</p>
<p>However, if applying the rule would result in significant unfairness, a judge can order a division that's not 50/50.</p>
</div> </div>
</div> </div>
{% if married_marriage_like == 'Living together in a marriage like relationship' %}
<div class="information-message bg-danger">
<p>In order to be considered a spouse for the purposes of dividing property or debt you must have lived together in a marriage-like relationship for at least two years.</p>
<p>Under the law, the start date of a spousal relationship is the day two individuals begin living together in a marriage-like relationship, or the day they were married, whichever is first. The start date of a spousal relationship determines when
rights or responsibilities start under the Family Law Act, particularly respecting property division.</p>
</div>
{% endif %}
</div> </div>
{% endblock %}
{% block sidebarText %}
<div>
<h2>Where to Find Out More About Dealing with Property and Debt</h2>
<p>For more information about dealing with Property and Debt, please visit:</p>
<ul>
<li>The <a href="http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice/family-law/dealing-with-property-and-debt" target="_blank">Family Justice section</a> of the BC Government web site. </li>
<li><a href="http://www.familylaw.lss.bc.ca/" target="_blank">Dividing family property and debts</a> on the Family Law in British Columbia website</li>
<li><a href="http://www.familylaw.lss.bc.ca/resources/publications/pub.php?pub=347" target="_blank">Living Together or Living Apart</a>, a booklet about the family law basics in B.C.</li>
<li><a href="http://www.cbabc.org/For-the-Public/Dial-A-Law/Scripts/Family-Law/124" target="_blank">Dividing Family Assets</a> in the Family Law section of Dial-A-Law</li>
</ul>
<div id="property_debt_division_method" class="question-well" hidden>
<h3>Please describe how you and your spouse plan to divide your property, assets and your debts. </h3>
<p>Because the division of family property and debt can be complex we recommend you get
<a href="http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice/who-can-help/lawyers" target="_blank">legal advice</a> before you make any final decisions.
</p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapse_deal_property" aria-controls="collapse_deal_property">
<div>
Where to find out more about dealing with Property and Debt
</div>
</div> </div>
<div>
<h2>Excluded property includes:</h2>
<ul>
<li>any property that each spouse owned before the relationship started</li>
<li>gifts and inheritances given to only one spouse during the relationship;</li>
<li>compensation payments made to one spouse only for personal injury
or loss (unless it was meant to compensate both spouses or involves
income that was lost during the relationship)</li>
<li>insurance payments made to one spouse only for personal injury or
loss (unless it was meant to compensate both spouses or involves
income that was lost during the relationship); or</li>
<li>property bought during the relationship with excluded property.
Excluded property belongs to the spouse who owned, bought, or received
it. However, if the property becomes more valuable during the relationship,
the increase in value is considered family property.</li>
</ul>
<div class="collapse" id="collapse_deal_property">
<div>
<p>The fact sheet Dealing With Debts After Separation (for Married and Common-law Couples) by the Legal Services Society answers a range of questions including:</p>
<ul>
<li>What is family property?</li>
<li>What about property one of us owned before we got together?</li>
<li>Can creditors force me to pay back my ex-spouse's debts?</li>
</ul>
<p>The Family Law web site has an online separation agreement tool that details some of the items to consider when
<a href="http://www.familylaw.lss.bc.ca/guides/separation/property.php" target="_blank">dividing property</a> and
<a href="http://www.familylaw.lss.bc.ca/guides/separation/debt.php" target="_blank">debt</a>.</p>
</div>
</div> </div>
{% input_field type="textarea" name="how_to_divide_property_debt" rows="8" cols="65" class="response-textarea" %}
</div>
<div class="question-well">
<h3>Other Property Claims</h3>
<p>This section is about excluded property - e.g. property owned by the respondent at the time you moved in together, and gifts or inheritances the respondent received. Compensation is cash instead of ownership of your share of the property.</p>
{% input_field type="textarea" name="other_property_claims" rows="8" cols="65" class="response-textarea" %}
</div>
<div style="display: flex">
<form action="{% url 'question_steps' '06_support' %}">
<input type="submit" value="Back" />
</form>
<form action="#">
<input type="submit" value="Save" />
</form>
<form action="{% url 'question_steps' '08_other_orders' %}">
<input type="submit" value="Next" />
</form>
</div>
{% endblock %} {% block sidebarText %}
<div>
<h2>Where to Find Out More About Dealing with Property and Debt</h2>
<p>For more information about dealing with Property and Debt, please visit:</p>
<ul>
<li>The <a href="http://www2.gov.bc.ca/gov/content/life-events/divorce/family-justice/family-law/dealing-with-property-and-debt" target="_blank">Family Justice section</a> of the BC Government web site. </li>
<li><a href="http://www.familylaw.lss.bc.ca/" target="_blank">Dividing family property and debts</a> on the Family Law in British Columbia website</li>
<li><a href="http://www.familylaw.lss.bc.ca/resources/publications/pub.php?pub=347" target="_blank">Living Together or Living Apart</a>, a booklet about the family law basics in B.C.</li>
<li><a href="http://www.cbabc.org/For-the-Public/Dial-A-Law/Scripts/Family-Law/124" target="_blank">Dividing Family Assets</a> in the Family Law section of Dial-A-Law</li>
</ul>
<h2>Excluded property includes:</h2>
<ul>
<li>any property that each spouse owned before the relationship started</li>
<li>gifts and inheritances given to only one spouse during the relationship;</li>
<li>compensation payments made to one spouse only for personal injury or loss (unless it was meant to compensate both spouses or involves income that was lost during the relationship)</li>
<li>insurance payments made to one spouse only for personal injury or loss (unless it was meant to compensate both spouses or involves income that was lost during the relationship); or</li>
<li>property bought during the relationship with excluded property. Excluded property belongs to the spouse who owned, bought, or received it. However, if the property becomes more valuable during the relationship, the increase in value is considered
family property.</li>
</ul>
</div>
{% endblock %} {% endblock %}

+ 14
- 19
edivorce/apps/core/templates/question/08_other_orders.html View File

@ -3,24 +3,19 @@
{% block title %}{{ block.super }}: Other Orders{% endblock %} {% block title %}{{ block.super }}: Other Orders{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Step 8. Other Orders</h1>
<div style="display: flex">
<form action="{% url 'question_steps' '07_property' %}">
<input type="submit" value="Back"/>
</form>
<form action="#">
<input type="submit" value="Save"/>
</form>
<form action="{% url 'question_steps' '09_other_questions' %}">
<input type="submit" value="Next"/>
</form>
</div>
</div>
</div>
</div>
<h1><small>Step 8:</small>Other Orders</h1>
<div style="display: flex">
<form action="{% url 'question_steps' '07_property' %}">
<input type="submit" value="Back"/>
</form>
<form action="#">
<input type="submit" value="Save"/>
</form>
<form action="{% url 'question_steps' '09_other_questions' %}">
<input type="submit" value="Next"/>
</form>
</div> </div>
{% endblock %} {% endblock %}

+ 79
- 84
edivorce/apps/core/templates/question/09_other_questions.html View File

@ -4,92 +4,87 @@
{% block title %}{{ block.super }}: Spousal Support{% endblock %} {% block title %}{{ block.super }}: Spousal Support{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Step 9. Other Questions</h1>
<div>
<div>
<h3>What is the best address to send you official court documents?</h3>
<h2>Your Contact Information</h2>
<p><em>House and street number</em></p>
{% input_field type="text" name="address_to_send_official_document_street_you" class="form-block input-wide response-textbox" %}
<p><em>City</em></p>
{% input_field type="text" name="address_to_send_official_document_city_you" class="form-block input-wide response-textbox" %}
<p><em>Prov/State</em></p>
{% input_field type="text" name="address_to_send_official_document_prov_you" class="form-block input-narrow response-textbox" %}
<p>Country</p>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other" name="address_to_send_official_document_country_you" value="Canada" %}Canada</label></div>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other" name="address_to_send_official_document_country_you" value="USA" %}USA</label></div>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other radio_with_textbox" name="address_to_send_official_document_country_you" value="Other" %}Other {% input_field type="text" name="address_to_send_official_document_other_country_you" class="response-textbox other-textbox input-inline" tabindex="-1" %}</label></div>
<p><em>Postal code</em></p>
{% input_field type="text" name="address_to_send_official_document_postal_code_you" class="form-block input-wide response-textbox" %}
</div>
<div>
<p><em>If you don’t live within 30 km of a court registry, you must provide a fax number or email address.
If you main address is a PO box, you can list this instead of the fax or email but you must also list
an address that’s not a PO box.</em></p>
<p><em>Fax number (optional)</em></p>
{% input_field type="text" name="address_to_send_official_document_fax_you" class="form-block input-wide response-textbox" %}
<p><em>Email Address (optional)</em></p>
{% input_field type="text" id="email_textbox" name="address_to_send_official_document_email_you" class="form-block input-wide response-textbox" %}
</div>
</div>
<div>
<div>
<h2>Your Spouse's Contact Information</h2>
<p><em>House and street number</em></p>
{% input_field type="text" name="address_to_send_official_document_street_spouse" class="form-block input-wide response-textbox" %}
<p><em>City</em></p>
{% input_field type="text" name="address_to_send_official_document_city_spouse" class="form-block input-wide response-textbox" %}
<p><em>Prov/State</em></p>
{% input_field type="text" name="address_to_send_official_document_prov_spouse" class="form-block input-narrow response-textbox" %}
<p>Country</p>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other" name="address_to_send_official_document_country_spouse" value="Canada" %}Canada</label></div>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other" name="address_to_send_official_document_country_spouse" value="USA" %}USA</label></div>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other radio_with_textbox" name="address_to_send_official_document_country_spouse" value="Other" %}Other {% input_field type="text" name="address_to_send_official_document_other_country_spouse" class="response-textbox other-textbox input-inline" tabindex="-1" %}</label></div>
<p><em>Postal code</em></p>
{% input_field type="text" name="address_to_send_official_document_postal_code_spouse" class="form-block input-wide response-textbox" %}
</div>
<div>
<p><em>If your spouse doesn’t live within 30 km of a court registry, your spouse must provide a fax number or email address.
If your spouse's main address is a PO box, your spouse can list this instead of the fax or email but your spouse must also list
an address that’s not a PO box.</em></p>
<p><em>Fax number (optional)</em></p>
{% input_field type="text" name="address_to_send_official_document_fax_spouse" class="form-block input-wide response-textbox" %}
<p><em>Email Address (optional)</em></p>
{% input_field type="text" id="email_textbox" name="address_to_send_official_document_email_spouse" class="form-block input-wide response-textbox" %}
</div>
</div>
<div style="display: flex">
<form action="{% url 'question_steps' '08_other_orders' %}">
<input type="submit" value="Back"/>
</form>
<form action="#">
<input type="submit" value="Save"/>
</form>
<form action="{% url 'question_steps' '10_location' %}">
<input type="submit" value="Next"/>
</form>
</div>
</div>
</div>
<h1><small>Step 9:</small>Other Questions</h1>
<div class="question-well">
<div>
<h3>What is the best address to send you official court documents?</h3>
<h2>Your Contact Information</h2>
<p><em>House and street number</em></p>
{% input_field type="text" name="address_to_send_official_document_street_you" class="form-block input-wide response-textbox" %}
<p><em>City</em></p>
{% input_field type="text" name="address_to_send_official_document_city_you" class="form-block input-wide response-textbox" %}
<p><em>Prov/State</em></p>
{% input_field type="text" name="address_to_send_official_document_prov_you" class="form-block input-narrow response-textbox" %}
<p>Country</p>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other" name="address_to_send_official_document_country_you" value="Canada" %}Canada</label></div>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other" name="address_to_send_official_document_country_you" value="USA" %}USA</label></div>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other radio_with_textbox" name="address_to_send_official_document_country_you" value="Other" %}Other {% input_field type="text" name="address_to_send_official_document_other_country_you" class="response-textbox other-textbox input-inline" tabindex="-1" %}</label></div>
<p><em>Postal code</em></p>
{% input_field type="text" name="address_to_send_official_document_postal_code_you" class="form-block input-wide response-textbox" %}
</div>
<div>
<p><em>If you don’t live within 30 km of a court registry, you must provide a fax number or email address.
If you main address is a PO box, you can list this instead of the fax or email but you must also list
an address that’s not a PO box.</em></p>
<p><em>Fax number (optional)</em></p>
{% input_field type="text" name="address_to_send_official_document_fax_you" class="form-block input-wide response-textbox" %}
<p><em>Email Address (optional)</em></p>
{% input_field type="text" id="email_textbox" name="address_to_send_official_document_email_you" class="form-block input-wide response-textbox" %}
</div> </div>
</div> </div>
<div class="question-well">
<div>
<h2>Your Spouse's Contact Information</h2>
<p><em>House and street number</em></p>
{% input_field type="text" name="address_to_send_official_document_street_spouse" class="form-block input-wide response-textbox" %}
<p><em>City</em></p>
{% input_field type="text" name="address_to_send_official_document_city_spouse" class="form-block input-wide response-textbox" %}
<p><em>Prov/State</em></p>
{% input_field type="text" name="address_to_send_official_document_prov_spouse" class="form-block input-narrow response-textbox" %}
<p>Country</p>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other" name="address_to_send_official_document_country_spouse" value="Canada" %}Canada</label></div>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other" name="address_to_send_official_document_country_spouse" value="USA" %}USA</label></div>
<div class="radio"><label>{% input_field type="radio" class="radio-with-other radio_with_textbox" name="address_to_send_official_document_country_spouse" value="Other" %}Other {% input_field type="text" name="address_to_send_official_document_other_country_spouse" class="response-textbox other-textbox input-inline" tabindex="-1" %}</label></div>
<p><em>Postal code</em></p>
{% input_field type="text" name="address_to_send_official_document_postal_code_spouse" class="form-block input-wide response-textbox" %}
</div>
<div>
<p><em>If your spouse doesn’t live within 30 km of a court registry, your spouse must provide a fax number or email address.
If your spouse's main address is a PO box, your spouse can list this instead of the fax or email but your spouse must also list
an address that’s not a PO box.</em></p>
<p><em>Fax number (optional)</em></p>
{% input_field type="text" name="address_to_send_official_document_fax_spouse" class="form-block input-wide response-textbox" %}
<p><em>Email Address (optional)</em></p>
{% input_field type="text" id="email_textbox" name="address_to_send_official_document_email_spouse" class="form-block input-wide response-textbox" %}
</div>
</div>
<div style="display: flex">
<form action="{% url 'question_steps' '08_other_orders' %}">
<input type="submit" value="Back"/>
</form>
<form action="#">
<input type="submit" value="Save"/>
</form>
<form action="{% url 'question_steps' '10_location' %}">
<input type="submit" value="Next"/>
</form>
</div>
{% endblock %} {% endblock %}
{% block sidebar %} {% block sidebar %}
{% endblock %} {% endblock %}

+ 36
- 40
edivorce/apps/core/templates/question/10_location.html View File

@ -4,47 +4,43 @@
{% block title %}{{ block.super }}: Property And Debts{% endblock %} {% block title %}{{ block.super }}: Property And Debts{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Step 10: Filing Location</h1>
<p>
Ok, we're almost done asking you questions. The last set of information that we need to know is where
you will be filing your divorce document. You will need to file your documents in person at a court registry.
</p>
<p>
The only way to obtain an order for divorce is by starting a court proceeding in the B.C. Supreme Court;
you must sue your spouse if you want to get divorced. To do this you will need to submit (file) your divorce application at a court registry
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>COURT REGISTRY</b><br /><br />A registry is where you file your divorce documents.
Registries are located in courthouses around the province. " aria-hidden="true"></i>.
</p>
<div>
<h3>Where will you be filing for divorce?</h3>
<p><em>Select a city to find the nearest Supreme Court Registry</em></p>
<select class="response-dropdown" name="court_registry_for_filing">
<option value="" disabled selected>Please select</option>
{% for registry in registries %}
<option value='{{registry}}'>{{registry}}</option>
{% endfor %}
</select>
</div>
<div style="display: flex">
<form action="{% url 'question_steps' '09_other_questions' %}">
<input type="submit" value="Back"/>
</form>
<form action="#">
<input type="submit" value="Save"/>
</form>
<form action="{% url 'question_steps' '11_review' %}">
<input type="submit" value="Next"/>
</form>
</div>
</div>
</div>
</div>
<h1><small>Step 10:</small>Filing Location</h1>
<p>
Ok, we're almost done asking you questions. The last set of information that we need to know is where
you will be filing your divorce document. You will need to file your documents in person at a court registry.
</p>
<p>
The only way to obtain an order for divorce is by starting a court proceeding in the B.C. Supreme Court;
you must sue your spouse if you want to get divorced. To do this you will need to submit (file) your divorce application at a
<span class="toolip" data-toggle="tooltip" data-placement="right" data-html="true"
title="<b>COURT REGISTRY</b><br /><br />A registry is where you file your divorce documents.
Registries are located in courthouses around the province. "> court registry
<i class="fa fa-question-circle" aria-hidden="true"></i></span>.
</p>
<div class="question-well">
<h3>Where will you be filing for divorce?</h3>
<p><em>Select a city to find the nearest Supreme Court Registry</em></p>
<select class="response-dropdown" name="court_registry_for_filing">
<option value="" disabled selected>Please select</option>
{% for registry in registries %}
<option value='{{registry}}'>{{registry}}</option>
{% endfor %}
</select>
</div>
<div style="display: flex">
<form action="{% url 'question_steps' '09_other_questions' %}">
<input type="submit" value="Back"/>
</form>
<form action="#">
<input type="submit" value="Save"/>
</form>
<form action="{% url 'question_steps' '11_review' %}">
<input type="submit" value="Next"/>
</form>
</div> </div>
{% endblock %} {% endblock %}


+ 52
- 58
edivorce/apps/core/templates/question/11_review.html View File

@ -3,62 +3,56 @@
{% block title %}{{ block.super }}: Review{% endblock %} {% block title %}{{ block.super }}: Review{% endblock %}
{% block content %} {% block content %}
<div class="container-wrapper">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1>Step 11. Review</h1>
<ul>
<li>
<h4>Pre-qualification questions</h4>
{% include "partials/review_user_responses.html" with questions=prequalification %}
</li>
<li>
<h4>Step 1: What are you asking for</h4>
{% include "partials/review_user_responses.html" with questions=which_orders %}
</li>
<li>
<h4>Step 2: Your information</h4>
{% include "partials/review_user_responses.html" with questions=your_information %}
</li>
<li>
<h4>Step 3: Your spouse</h4>
{% include "partials/review_user_responses.html" with questions=your_spouse %}
</li>
<li>
<h4>Step 4: Your marriage</h4>
{% include "partials/review_user_responses.html" with questions=your_marriage %}
</li>
<li>
<h4>Step 5: Your separation</h4>
{% include "partials/review_user_responses.html" with questions=your_separation %}
</li>
<li>
<h4>Step 6: Spousal support</h4>
{% include "partials/review_user_responses.html" with questions=spousal_support %}
</li>
<li>
<h4>Step 7: Property and debt</h4>
{% include "partials/review_user_responses.html" with questions=property_and_debt %}
</li>
<li>
<h4>Step 8: Other orders</h4>
{% include "partials/review_user_responses.html" with questions=other_orders %}
</li>
<li>
<h4>Step 9: Other questions</h4>
{% include "partials/review_user_responses.html" with questions=other_questions %}
</li>
<li>
<h4>Step 10: Filing locations</h4>
{% include "partials/review_user_responses.html" with questions=filing_locations %}
</li>
</ul>
<form action="{% url 'overview' %}">
<input type="submit" value="Process overview" style="border: solid"/>
</form>
</div>
</div>
</div>
</div>
<h1><small>Step 11</small> Review</h1>
<ul>
<li>
<h4>Pre-qualification questions</h4>
{% include "partials/review_user_responses.html" with questions=prequalification %}
</li>
<li>
<h4>Step 1: What are you asking for</h4>
{% include "partials/review_user_responses.html" with questions=which_orders %}
</li>
<li>
<h4>Step 2: Your information</h4>
{% include "partials/review_user_responses.html" with questions=your_information %}
</li>
<li>
<h4>Step 3: Your spouse</h4>
{% include "partials/review_user_responses.html" with questions=your_spouse %}
</li>
<li>
<h4>Step 4: Your marriage</h4>
{% include "partials/review_user_responses.html" with questions=your_marriage %}
</li>
<li>
<h4>Step 5: Your separation</h4>
{% include "partials/review_user_responses.html" with questions=your_separation %}
</li>
<li>
<h4>Step 6: Spousal support</h4>
{% include "partials/review_user_responses.html" with questions=spousal_support %}
</li>
<li>
<h4>Step 7: Property and debt</h4>
{% include "partials/review_user_responses.html" with questions=property_and_debt %}
</li>
<li>
<h4>Step 8: Other orders</h4>
{% include "partials/review_user_responses.html" with questions=other_orders %}
</li>
<li>
<h4>Step 9: Other questions</h4>
{% include "partials/review_user_responses.html" with questions=other_questions %}
</li>
<li>
<h4>Step 10: Filing locations</h4>
{% include "partials/review_user_responses.html" with questions=filing_locations %}
</li>
</ul>
<form action="{% url 'overview' %}">
<input type="submit" value="Process overview" style="border: solid"/>
</form>
{% endblock %} {% endblock %}

Loading…
Cancel
Save