Browse Source

Merged with f2fce21

pull/160/head
Charles Shin 8 years ago
parent
commit
61b2c4b4ad
13 changed files with 179 additions and 130 deletions
  1. +1
    -1
      edivorce/apps/core/static/css/main.css
  2. +37
    -7
      edivorce/apps/core/static/css/main.scss
  3. +7
    -4
      edivorce/apps/core/static/js/main.js
  4. +7
    -5
      edivorce/apps/core/templates/base.html
  5. +35
    -32
      edivorce/apps/core/templates/prequalification/step_01.html
  6. +3
    -3
      edivorce/apps/core/templates/prequalification/step_02.html
  7. +3
    -1
      edivorce/apps/core/templates/prequalification/step_03.html
  8. +24
    -20
      edivorce/apps/core/templates/prequalification/step_04.html
  9. +55
    -52
      edivorce/apps/core/templates/prequalification/step_05.html
  10. +1
    -1
      edivorce/apps/core/templates/prequalification/step_06.html
  11. +1
    -1
      edivorce/apps/core/templates/question/02_claimant.html
  12. +1
    -1
      edivorce/apps/core/templates/question/04_marriage.html
  13. +4
    -2
      edivorce/apps/core/templates/question/06_support.html

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


+ 37
- 7
edivorce/apps/core/static/css/main.scss View File

@ -42,6 +42,7 @@ body {
background: #ffffff; background: #ffffff;
-webkit-font-smoothing: antialiased; -webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; -moz-osx-font-smoothing: grayscale;
min-width: 768px;
} }
h1,h2,h3,h4 { h1,h2,h3,h4 {
@ -222,6 +223,7 @@ i.fa.fa-question-circle {margin-left: 5px;}
padding: 6px 18px; padding: 6px 18px;
background-color: $brand-buttons; background-color: $brand-buttons;
color: #ffffff; color: #ffffff;
margin-bottom: 12px;
&:hover { &:hover {
background-color: darken($brand-buttons, 20%); background-color: darken($brand-buttons, 20%);
} }
@ -460,34 +462,36 @@ textarea {
/* Column Grid in flexbox */ /* Column Grid in flexbox */
.row-flex { .row-flex {
display: flex;
flex-direction: row;
flex-wrap: wrap;
height: 100%;
display: flex;
flex-direction: row;
flex-wrap: wrap;
height: 100%;
.col { .col {
flex: 1; flex: 1;
box-sizing: border-box; box-sizing: border-box;
order: 3;
} }
.content-column { .content-column {
flex-basis: 100%;
max-width: 800px; max-width: 800px;
padding: 35px 50px 50px 50px; padding: 35px 50px 50px 50px;
} }
.progress-column { .progress-column {
flex: 0 0 262px; flex: 0 0 262px;
background-color: $color-grey-lighter; background-color: $color-grey-lighter;
order: 2;
} }
.dashnav-column { .dashnav-column {
flex: 0 0 262px; flex: 0 0 262px;
background-color: $brand-titles; background-color: $brand-titles;
} }
.more_information-column { .more_information-column {
flex: 0 0 306px;
flex: 100%;
background-color: $color-grey-lighter; background-color: $color-grey-lighter;
box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1); box-shadow: inset 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
padding: 45px 20px; padding: 45px 20px;
font-size: 14px; font-size: 14px;
line-height: 21px; line-height: 21px;
order: 1;
.more_information-close { .more_information-close {
float: right; float: right;
font-size: 24px; font-size: 24px;
@ -499,6 +503,12 @@ textarea {
padding-right: 25px; padding-right: 25px;
} }
} }
@media (min-width: 992px) {
.more_information-column {
order: 4;
flex: 0 0 306px;
}
}
&.intro-page { &.intro-page {
background: $color-blue-medium url("../img/bg-edivorce__landing.jpg") no-repeat top center fixed; background: $color-blue-medium url("../img/bg-edivorce__landing.jpg") no-repeat top center fixed;
background-size: cover; background-size: cover;
@ -555,6 +565,8 @@ textarea {
} }
} }
/* Side Progress Navigation */ /* Side Progress Navigation */
.progress-column, .progress-column,
@ -658,7 +670,25 @@ textarea {
} }
} }
/* Transitions & Transforms */
.on-canvas {
@media (min-width: 1px) and (max-width: 991px) {
display: block;
}
@media (min-width: 992px) {
transition: 300ms ease-out all;
transform: translateX(0);
}
}
.off-canvas {
@media (min-width: 1px) and (max-width: 991px) {
display: none;
}
@media (min-width: 992px) {
transition: 300ms ease-out all;
transform: translateX(306px);
}
}

+ 7
- 4
edivorce/apps/core/static/js/main.js View File

@ -81,15 +81,18 @@ var date_picker = function () {
// Expand More Information boxes // Expand More Information boxes
$(".more_information-link a").click(function () { $(".more_information-link a").click(function () {
var moreInfo = $(".more_information-column"); var moreInfo = $(".more_information-column");
if ($(moreInfo).hasClass("hidden")) {
$(moreInfo).removeClass("hidden");
if ($(moreInfo).hasClass("off-canvas")) {
$(moreInfo).removeClass("off-canvas");
$(moreInfo).addClass("on-canvas");
} else { } else {
$(moreInfo).addClass("hidden");
$(moreInfo).removeClass("on-canvas");
$(moreInfo).addClass("off-canvas");
} }
}); });
$("a.more_information-close").click(function () { $("a.more_information-close").click(function () {
var moreInfo = $(".more_information-column"); var moreInfo = $(".more_information-column");
$(moreInfo).addClass("hidden");
$(moreInfo).removeClass("on-canvas");
$(moreInfo).addClass("off-canvas");
}); });
// Change border color on well when child has focus // Change border color on well when child has focus


+ 7
- 5
edivorce/apps/core/templates/base.html View File

@ -3,12 +3,11 @@
<html class="no-js" lang="en"> <html class="no-js" lang="en">
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>{% block title %}Ministry of Justice e-Divorce{% endblock %}</title> <title>{% block title %}Ministry of Justice e-Divorce{% endblock %}</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" type="text/css" href="{% static "css/bootstrap.min.css" %}"> <link rel="stylesheet" type="text/css" href="{% static "css/bootstrap.min.css" %}">
<link rel="stylesheet" type="text/css" href="{% static "css/bootstrap-datepicker3.min.css" %}"> <link rel="stylesheet" type="text/css" href="{% static "css/bootstrap-datepicker3.min.css" %}">
@ -58,8 +57,11 @@
<div class="container-fluid"> <div class="container-fluid">
<div class="row"> <div class="row">
<div class="col-md-5"> <div class="col-md-5">
<div class="mid_banner-dash"><a href="{% url 'overview' %}"><i class="fa fa-arrow-circle-o-left" aria-hidden="true"></i>Back to Dashboard</a>
</div>
{% if request.bceid_user.is_authenticated %}
<div class="mid_banner-dash"><a href="{% url 'overview' %}">
<i class="fa fa-arrow-circle-o-left" aria-hidden="true"></i>Back to Dashboard</a>
</div>
{% endif %}
</div> </div>
<div class="col-md-7"> <div class="col-md-7">
<div class="more_information-link"> <div class="more_information-link">


+ 35
- 32
edivorce/apps/core/templates/prequalification/step_01.html View File

@ -9,41 +9,44 @@
<p>Let's start off with a few questions about your situation to make sure that this online divorce tool can <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> 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="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 known as common law) relationship</label>
</div>
<div class="question-well">
<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 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>
</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 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>


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

@ -6,7 +6,7 @@
{% block content %} {% block content %}
<h1>Do you qualify for a divorce in BC?</h1> <h1>Do you qualify for a divorce in BC?</h1>
<div>
<div class="question-well">
<h3>Do you or your spouse live in British Columbia?</h3> <h3>Do you or your spouse live in British Columbia?</h3>
<div class="btn-radio-group" data-toggle="buttons"> <div class="btn-radio-group" data-toggle="buttons">
@ -42,7 +42,7 @@
</div> </div>
</div> </div>
<div>
<div class="question-well">
<h3>Have you or your spouse lived in B.C. at least one year prior to starting your divorce?</h3> <h3>Have you or your spouse lived in B.C. at least one year prior to starting your divorce?</h3>
<div class="btn-radio-group" data-toggle="buttons"> <div class="btn-radio-group" data-toggle="buttons">
@ -73,7 +73,7 @@
{% endblock %} {% endblock %}
{% block formbuttons %} {% block formbuttons %}
<div class="form-buttons">
<div class="form-buttons clearfix">
<a class="btn btn-success pull-right" href="{% url 'prequalification' '03' %}">Next&nbsp;&nbsp;&nbsp;<i class="fa fa-arrow-circle-o-right"></i></a> <a class="btn btn-success pull-right" href="{% url 'prequalification' '03' %}">Next&nbsp;&nbsp;&nbsp;<i class="fa fa-arrow-circle-o-right"></i></a>
</div> </div>
{% endblock %} {% endblock %}


+ 3
- 1
edivorce/apps/core/templates/prequalification/step_03.html View File

@ -5,6 +5,8 @@
{% block content %} {% block content %}
<h1>Do you qualify for a divorce in BC?</h1>
<div class="question-well"> <div class="question-well">
<h3>When did you and your spouse separate (legally this is referred to as living separate and apart) <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" <i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true"
@ -129,7 +131,7 @@
{% endblock %} {% endblock %}
{% block formbuttons %} {% block formbuttons %}
<div class="form-buttons">
<div class="form-buttons clearfix">
<a class="btn btn-success pull-right" href="{% url 'prequalification' '04' %}">Next&nbsp;&nbsp;&nbsp;<i class="fa fa-arrow-circle-o-right"></i></a> <a class="btn btn-success pull-right" href="{% url 'prequalification' '04' %}">Next&nbsp;&nbsp;&nbsp;<i class="fa fa-arrow-circle-o-right"></i></a>
</div> </div>
{% endblock %} {% endblock %}


+ 24
- 20
edivorce/apps/core/templates/prequalification/step_04.html View File

@ -5,6 +5,9 @@
{% block content %} {% block content %}
<h1>Do you qualify for a divorce in BC?</h1>
<div class="question-well">
<h3>Do you and your spouse have any children (includes step children, adopted children). The legal term is children of the marriage <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" <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 title="<b>Children for the Marriage</b><br/><br/> The
@ -34,8 +37,9 @@
divorce documents. Or, if you wish, you can name them in your divorce documents. Or, if you wish, you can name them in your
documents, and indicate that they are over 19 and independent, documents, and indicate that they are over 19 and independent,
and no longer requiring support.</em></p> and no longer requiring support.</em></p>
</div>
<div class="reveal" id="has_children" hidden>
<div class="reveal question-well" id="has_children" hidden>
<h3>Are any of the children 19 years or younger?</h3> <h3>Are any of the children 19 years or younger?</h3>
<div class="btn-radio-group" data-toggle="buttons"> <div class="btn-radio-group" data-toggle="buttons">
@ -56,31 +60,31 @@
<p>A <a href="http://www.familylaw.lss.bc.ca/guides/divorce/divJoint_courtForms.php" target="_blank">listing of forms</a> <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> that may be required for a Joint Divorce can also be found on the Legal Services Society web site.</p>
</div> </div>
</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 class="reveal question-well" 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>
{% endblock %} {% endblock %}
{% block formbuttons %} {% block formbuttons %}
<div class="form-buttons">
<div class="form-buttons clearfix">
<a class="btn btn-success pull-right" href="{% url 'prequalification' '05' %}">Next&nbsp;&nbsp;&nbsp;<i class="fa fa-arrow-circle-o-right"></i></a> <a class="btn btn-success pull-right" href="{% url 'prequalification' '05' %}">Next&nbsp;&nbsp;&nbsp;<i class="fa fa-arrow-circle-o-right"></i></a>
</div> </div>
{% endblock %} {% endblock %}


+ 55
- 52
edivorce/apps/core/templates/prequalification/step_05.html View File

@ -6,61 +6,63 @@
{% block content %} {% block content %}
<h1>Do you qualify for a divorce in BC?</h1> <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 target='_blank' href='http://www2.gov.bc.ca/gov/content/life-events/marriages/marriage-certificates'>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 target='_blank' href='http://www2.gov.bc.ca/gov/content/life-events/marriages/marriage-registration/certified-copies-and-certified-electronic-extracts-of-a-marriage-registration'>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>
<div class="question-well">
<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 target='_blank' href='http://www2.gov.bc.ca/gov/content/life-events/marriages/marriage-certificates'>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 target='_blank' href='http://www2.gov.bc.ca/gov/content/life-events/marriages/marriage-registration/certified-copies-and-certified-electronic-extracts-of-a-marriage-registration'>Marriage Registration page</a>
on the B.C. Government web site." aria-hidden="true"></i>)?</h3>
<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="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>
<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?
<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> </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>
<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>
</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="reveal question-well" 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"> <div class="btn-radio-group" data-toggle="buttons">
<label class="btn btn-radio"> <label class="btn btn-radio">
@ -88,7 +90,7 @@
<p>Ideally the marriage certificate or registration of marriage is provided to the registry <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" <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. 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>
Registries are located in courthouses <a target='_blank' href='http://www.courts.gov.bc.ca/supreme_court/court_locations_and_contacts.aspx'>around the province</a>." aria-hidden="true"></i>
when you file the Notice of Joint Family Claim when you file the Notice of Joint Family Claim
<i class="fa fa-question-circle" data-toggle="tooltip" data-placement="right" data-html="true" <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. title="<b>Notice of Joint Family Claim</b><br /><br />This is the document that start the court case.
@ -123,7 +125,8 @@
</div> </div>
</div> </div>
<div>
<div class="question-well">
<h3>Is your marriage certificate or registration of marriage in English?</h3> <h3>Is your marriage certificate or registration of marriage in English?</h3>
<div class="btn-radio-group" data-toggle="buttons"> <div class="btn-radio-group" data-toggle="buttons">
@ -160,7 +163,7 @@
{% endblock %} {% endblock %}
{% block formbuttons %} {% block formbuttons %}
<div class="form-buttons">
<div class="form-buttons clearfix">
<a class="btn btn-success pull-right" href="{% url 'prequalification' '06' %}">Next&nbsp;&nbsp;&nbsp;<i class="fa fa-arrow-circle-o-right"></i></a> <a class="btn btn-success pull-right" href="{% url 'prequalification' '06' %}">Next&nbsp;&nbsp;&nbsp;<i class="fa fa-arrow-circle-o-right"></i></a>
</div> </div>
{% endblock %} {% endblock %}


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

@ -104,7 +104,7 @@
{% endblock %} {% endblock %}
{% block formbuttons %} {% block formbuttons %}
<div class="form-buttons">
<div class="form-buttons clearfix">
<a class="btn btn-success pull-right" href="{% url 'login' %}">Next&nbsp;&nbsp;&nbsp;<i class="fa fa-arrow-circle-o-right"></i></a> <a class="btn btn-success pull-right" href="{% url 'login' %}">Next&nbsp;&nbsp;&nbsp;<i class="fa fa-arrow-circle-o-right"></i></a>
</div> </div>
{% endblock %} {% endblock %}


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

@ -106,7 +106,7 @@
<h3>How long have you lived in British Columbia?</h3> <h3>How long have you lived in British Columbia?</h3>
<p>Please select one</p> <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" 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 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" 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> <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 <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


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

@ -12,7 +12,7 @@
title="<b>Original Marriage Certificate</b><br /><br />The marriage certificate you received at the church — 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 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 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>
<a target='_blank' href='http://www2.gov.bc.ca/gov/content/life-events/marriages/marriage-certificates'>Vital Statistics</a>
(an office run by the provincial government).">official marriage (an office run by the provincial government).">official marriage
certificate certificate
<i class="fa fa-question-circle" aria-hidden="true"></i></span> <i class="fa fa-question-circle" aria-hidden="true"></i></span>


+ 4
- 2
edivorce/apps/core/templates/question/06_support.html View File

@ -16,7 +16,9 @@
<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>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>
<p>For more information, please see the
<a target="_blank" 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>
<div class="question-well"> <div class="question-well">
@ -41,7 +43,7 @@
<li>What the person who is asking for spousal support needs in order to become self-sufficient, such as extra training or education.</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> </ul>
<p> <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.
<a href="http://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. 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> </p>


Loading…
Cancel
Save