From cee5ef527471e11ba2cb687fd0209f6509183ca6 Mon Sep 17 00:00:00 2001 From: ariannedee Date: Thu, 5 Nov 2020 17:41:52 -0800 Subject: [PATCH] DIV-1242: Extract order tooltips --- .../partials/tooltips/application.html | 18 +++ .../templates/partials/tooltips/base.html | 6 +- .../tooltips/children/child_support.html | 17 +++ .../partials/tooltips/children/custody.html | 14 +++ .../children/parental_responsibilities.html | 21 ++++ .../tooltips/children/parenting_time.html | 13 +++ .../partials/tooltips/draft_of_order.html | 17 +++ .../tooltips/forms/separation_agreement.html | 4 +- .../templates/partials/tooltips/master.html | 15 +++ .../templates/partials/tooltips/orders.html | 13 +++ .../partials/tooltips/provincial_court.html | 13 +++ .../partials/tooltips/supreme_court.html | 15 +++ .../core/templates/question/01_orders.html | 107 ++---------------- 13 files changed, 173 insertions(+), 100 deletions(-) create mode 100644 edivorce/apps/core/templates/partials/tooltips/application.html create mode 100644 edivorce/apps/core/templates/partials/tooltips/children/child_support.html create mode 100644 edivorce/apps/core/templates/partials/tooltips/children/custody.html create mode 100644 edivorce/apps/core/templates/partials/tooltips/children/parental_responsibilities.html create mode 100644 edivorce/apps/core/templates/partials/tooltips/children/parenting_time.html create mode 100644 edivorce/apps/core/templates/partials/tooltips/draft_of_order.html create mode 100644 edivorce/apps/core/templates/partials/tooltips/master.html create mode 100644 edivorce/apps/core/templates/partials/tooltips/orders.html create mode 100644 edivorce/apps/core/templates/partials/tooltips/provincial_court.html create mode 100644 edivorce/apps/core/templates/partials/tooltips/supreme_court.html diff --git a/edivorce/apps/core/templates/partials/tooltips/application.html b/edivorce/apps/core/templates/partials/tooltips/application.html new file mode 100644 index 00000000..a3f44ab8 --- /dev/null +++ b/edivorce/apps/core/templates/partials/tooltips/application.html @@ -0,0 +1,18 @@ +{% extends "partials/tooltips/base.html" %} + +{% block title %} + Application +{% endblock %} + +{% block inner %} + An application is a request to the court for an order or judgment + which occurs during the course of a court proceeding. What this means + is an application is what you are seeking from the court and the + draft order is the outcome of what is being sought. The draft order + includes the full details (e.g. child support to be paid by payor or + payee, by when, how, etc). of what you want the court to grant. +{% endblock %} + +{% block label %} + application +{% endblock %} \ No newline at end of file diff --git a/edivorce/apps/core/templates/partials/tooltips/base.html b/edivorce/apps/core/templates/partials/tooltips/base.html index d655bb12..516665e9 100644 --- a/edivorce/apps/core/templates/partials/tooltips/base.html +++ b/edivorce/apps/core/templates/partials/tooltips/base.html @@ -1,7 +1,5 @@ - - - {% if text %}{{ text }}{% else %}{% block label %}{% endblock %}{% endif %} + {% block inner %}{% endblock %}">{% if text %}{{ text }}{% else %}{% block label %}{% endblock %}{% endif %} \ No newline at end of file diff --git a/edivorce/apps/core/templates/partials/tooltips/children/child_support.html b/edivorce/apps/core/templates/partials/tooltips/children/child_support.html new file mode 100644 index 00000000..9b0d11e0 --- /dev/null +++ b/edivorce/apps/core/templates/partials/tooltips/children/child_support.html @@ -0,0 +1,17 @@ +{% extends "partials/tooltips/base.html" %} + +{% block title %} + Child Support +{% endblock %} + +{% block inner %} + Parents have a duty under the law to support their children, + even if one parent doesn't see or take care of the children. + The money one parent pays to the other parent to help provide + for the daily needs of the children is called child support or + maintenance. +{% endblock %} + +{% block label %} + child support +{% endblock %} \ No newline at end of file diff --git a/edivorce/apps/core/templates/partials/tooltips/children/custody.html b/edivorce/apps/core/templates/partials/tooltips/children/custody.html new file mode 100644 index 00000000..ec6a1e6c --- /dev/null +++ b/edivorce/apps/core/templates/partials/tooltips/children/custody.html @@ -0,0 +1,14 @@ +{% extends "partials/tooltips/base.html" %} + +{% block title %} + Custody +{% endblock %} + +{% block inner %} + Under the Divorce Act, where and with whom a child lives, and the guardian's rights and responsibilities for the child. + Under the BC Child, Family and Community Service Act, custody is similar. +{% endblock %} + +{% block label %} + custody +{% endblock %} \ No newline at end of file diff --git a/edivorce/apps/core/templates/partials/tooltips/children/parental_responsibilities.html b/edivorce/apps/core/templates/partials/tooltips/children/parental_responsibilities.html new file mode 100644 index 00000000..fefc0806 --- /dev/null +++ b/edivorce/apps/core/templates/partials/tooltips/children/parental_responsibilities.html @@ -0,0 +1,21 @@ +{% extends "partials/tooltips/base.html" %} + +{% block title %} + Parental Responsibilities +{% endblock %} + +{% block inner %} + The responsibilities guardians have for the children in their care, including decisions about daily care, education, religious upbringing, + extracurricular activities, etc. After separation or divorce, guardians can share parental responsibilities in whatever way that's in the child's + best interests, as decided by agreement or court order. +

+ When a child's parents live together, both parents are the child's guardians (have guardianship). + When the parents separate, both parents continue to be guardians unless they agree to change this or a court orders a change. + A court can give guardianship of a child to a non-parent. + Guardians are responsible for making all decisions about their child, including about daily care and supervision, education, health care, + cultural or religious upbringing, and where the child will live. +{% endblock %} + +{% block label %} + parental responsibilities +{% endblock %} \ No newline at end of file diff --git a/edivorce/apps/core/templates/partials/tooltips/children/parenting_time.html b/edivorce/apps/core/templates/partials/tooltips/children/parenting_time.html new file mode 100644 index 00000000..450f9dcf --- /dev/null +++ b/edivorce/apps/core/templates/partials/tooltips/children/parenting_time.html @@ -0,0 +1,13 @@ +{% extends "partials/tooltips/base.html" %} + +{% block title %} + Parenting Time +{% endblock %} + +{% block inner %} + The time that a guardian spends with a child and is responsible for the care and supervision of the child. +{% endblock %} + +{% block label %} + parenting time +{% endblock %} diff --git a/edivorce/apps/core/templates/partials/tooltips/draft_of_order.html b/edivorce/apps/core/templates/partials/tooltips/draft_of_order.html new file mode 100644 index 00000000..049f9270 --- /dev/null +++ b/edivorce/apps/core/templates/partials/tooltips/draft_of_order.html @@ -0,0 +1,17 @@ +{% extends "partials/tooltips/base.html" %} + +{% block title %} + Draft of the Order +{% endblock %} + +{% block inner %} + A draft final order sets out what orders (decisions) you want the + court to make (what you want the judge to approve). The draft final + order is reviewed by a judge or master. If the judge or master makes + the order you ask for, they'll sign the draft order you filed + and it becomes your final court order. +{% endblock %} + +{% block label %} + draft of the order +{% endblock %} \ No newline at end of file diff --git a/edivorce/apps/core/templates/partials/tooltips/forms/separation_agreement.html b/edivorce/apps/core/templates/partials/tooltips/forms/separation_agreement.html index adc8e8b5..7c7f2a09 100644 --- a/edivorce/apps/core/templates/partials/tooltips/forms/separation_agreement.html +++ b/edivorce/apps/core/templates/partials/tooltips/forms/separation_agreement.html @@ -5,7 +5,9 @@ {% endblock %} {% block inner %} - Put text here + A document that sets out how you and your spouse have agreed to deal with things 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. {% endblock %} {% block label %} diff --git a/edivorce/apps/core/templates/partials/tooltips/master.html b/edivorce/apps/core/templates/partials/tooltips/master.html new file mode 100644 index 00000000..c2c29880 --- /dev/null +++ b/edivorce/apps/core/templates/partials/tooltips/master.html @@ -0,0 +1,15 @@ +{% extends "partials/tooltips/base.html" %} + +{% block title %} + Master +{% endblock %} + +{% block inner %} + A master is a judicial officer of the Supreme Court who can hear and + decide certain applications, including interim applications for + parenting or support orders. +{% endblock %} + +{% block label %} + master +{% endblock %} \ No newline at end of file diff --git a/edivorce/apps/core/templates/partials/tooltips/orders.html b/edivorce/apps/core/templates/partials/tooltips/orders.html new file mode 100644 index 00000000..65a16415 --- /dev/null +++ b/edivorce/apps/core/templates/partials/tooltips/orders.html @@ -0,0 +1,13 @@ +{% extends "partials/tooltips/base.html" %} + +{% block title %} + Orders +{% endblock %} + +{% block inner %} + 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 your spouse must pay you $250 on a monthly basis + to help pay off your combined debt. +{% endblock %} + +{% block label %}Orders{% endblock %} diff --git a/edivorce/apps/core/templates/partials/tooltips/provincial_court.html b/edivorce/apps/core/templates/partials/tooltips/provincial_court.html new file mode 100644 index 00000000..430d8158 --- /dev/null +++ b/edivorce/apps/core/templates/partials/tooltips/provincial_court.html @@ -0,0 +1,13 @@ +{% extends "partials/tooltips/base.html" %} + +{% block title %} + Provincial Court +{% endblock %} + +{% block inner %} + The lower level trial court which deals with small claims, family, youth criminal offenders, criminal and traffic matters. +{% endblock %} + +{% block label %} + Provincial Court +{% endblock %} diff --git a/edivorce/apps/core/templates/partials/tooltips/supreme_court.html b/edivorce/apps/core/templates/partials/tooltips/supreme_court.html new file mode 100644 index 00000000..612fd45e --- /dev/null +++ b/edivorce/apps/core/templates/partials/tooltips/supreme_court.html @@ -0,0 +1,15 @@ +{% extends "partials/tooltips/base.html" %} + +{% block title %} + Supreme Court +{% endblock %} + +{% block inner %} + The higher level trial court. This court also hears appeals from + the Provincial Court, and sometimes reviews the decisions of certain + provincial tribunals and public decision-making bodies. +{% endblock %} + +{% block label %} + Supreme Court +{% endblock %} diff --git a/edivorce/apps/core/templates/question/01_orders.html b/edivorce/apps/core/templates/question/01_orders.html index 58cffae1..e61cb5d1 100644 --- a/edivorce/apps/core/templates/question/01_orders.html +++ b/edivorce/apps/core/templates/question/01_orders.html @@ -12,15 +12,7 @@

{% if not intercepted %}Step 1:{% endif %} - What are you asking for - (Orders -)? + What are you asking for ({% include "partials/tooltips/orders.html" %})?

Please select what you are asking for. Later on you will be asked to provide details for each request.

@@ -110,16 +102,7 @@

If you and your spouse have already agreed on spousal support (which could be in the form of a - separation agreement - ) + {% include "partials/tooltips/forms/separation_agreement.html" %}) then you do not need to ask for an Order for Spousal Support. However, if you do not have a separation agreement that deals with spousal support, then you may @@ -191,36 +174,10 @@ -

This may include - child support - , - parental responsibilities - (guardianship), - parenting time - (access, contact with a child) and - custody - . +

This may include {% include "partials/tooltips/children/child_support.html" %}, + {% include "partials/tooltips/children/parental_responsibilities.html" %}(guardianship), + {% include "partials/tooltips/children/parenting_time.html" %} + (access, contact with a child) and {% include "partials/tooltips/children/custody.html" %}.

NOTE: Just because you have children does not mean you have to select this option. Only select if you want a Judge to make @@ -298,23 +255,8 @@ Family Law Act. If you choose to go with the Family Law Act, you can get court orders or enforce an agreement in either - - Provincial Court - or - - Supreme Court, + {% include "partials/tooltips/provincial_court.html" %} + or {% include "partials/tooltips/supreme_court.html" %}, but if you go with the Divorce Act, you can only do this in Supreme Court.

@@ -323,7 +265,7 @@ apply to the Supreme Court to settle your other family law issues, such as support and parenting arrangements , under the Divorce Act or + target="_blank">parenting arrangements, under the Divorce Act or under the provincial Family Law Act. The Family Law Act is usually better for settling these issues because it is tailored to respond to the needs of families. @@ -437,34 +379,9 @@ registry. In Supreme Court, the parties involved in a case (or their lawyers) are responsible for telling the court the order(s) they want. This is done by putting the details in writing in their - application - and in a - draft of the order - to be signed by the judge or - master. + {% include "partials/tooltips/application.html" %} + and in a {% include "partials/tooltips/draft_of_order.html" %} to be signed by the judge or + {% include "partials/tooltips/master.html" %}. The judge or master who reviews the application will sign the order, if they approve it.