diff --git a/edivorce/apps/core/templates/partials/progress.html b/edivorce/apps/core/templates/partials/progress.html index 46d2d51c..a445c79b 100644 --- a/edivorce/apps/core/templates/partials/progress.html +++ b/edivorce/apps/core/templates/partials/progress.html @@ -64,6 +64,11 @@ Income & expenses +
  • + + Payor & medical expenses + +
  • Other fact sheets diff --git a/edivorce/apps/core/templates/question/06_children_payor_medical.html b/edivorce/apps/core/templates/question/06_children_payor_medical.html new file mode 100644 index 00000000..ed39a43b --- /dev/null +++ b/edivorce/apps/core/templates/question/06_children_payor_medical.html @@ -0,0 +1,48 @@ +{% extends 'base.html' %} +{% load input_field %} +{% load step_order %} + +{% block title %}{{ block.super }}: Your Children {% endblock %} + +{% block progress %}{% include "partials/progress.html" %}{% endblock %} + +{% block content %} +

    Step {% step_order step="children" %}:Children - Payor & medical expenses

    + +{% endblock %} + + +{% block formBack %}{% prev_step step='children' sub_step='payor_medical' %}{% endblock %} +{% block formNext %}{% next_step step='children' sub_step='payor_medical' %}{% endblock %} + +{% block sidebarText %} +

    Who pays who?

    +

    + The parent who the child lives with most of the time is entitled to get child support from the other parent + (the payor). This is to help with the costs of raising the child. If a child spends the same or almost the same + amount of time with each parent, then parent with the higher income may have to pay child support to the other + parent. +

    +

    What is the 40 percent principle?

    +

    + When a child lives with a payor 40 percent of the time or more, that parent can argue that they don't have to pay + as much support as the guidelines say. The judge or master may agree and order lower support amounts. +

    +

    + When a payor makes this request, the judge or master will consider how often the children are with the payor, + as well as the gross annual income of each parent and extra costs of sharing parenting time. The court will + also consider other factors, such as the circumstances of both parents and of the child being supported. +

    +

    Child Support Officers – Ministry of Justice

    +

    + For more information about the child support guidelines, a Child Support Office is available in Kelowna, + Nanaimo, Surrey and Vancouver. If you don’t live in a community with a Child Support Office you can phone the + following numbers for assistance: +

    +

    + Greater Vancouver: 604 660-2084 +

    +

    + Elsewhere in B.C.: 1-888-227-7734 (call no charge) (1) +

    +{% endblock %} \ No newline at end of file diff --git a/edivorce/apps/core/utils/template_step_order.py b/edivorce/apps/core/utils/template_step_order.py index 21a4ca7a..41c6ed9a 100644 --- a/edivorce/apps/core/utils/template_step_order.py +++ b/edivorce/apps/core/utils/template_step_order.py @@ -23,7 +23,8 @@ template_sub_step_order = { 'your_children': 1, 'what_for': 2, 'income_expenses': 3, - 'facts': 4 + 'payor_medical': 4, + 'facts': 5 } }