+ If you have a separation agreement you will need to attach the separation agreement as an
+
+ exhibit
+
+ to the Child Support Affidavit Form (F37).
+
+
+ How to file a separation agreement in order for it to be treated as a
+
+ court order
+
+
+
+ If you
+
+ wish to file your separation agreement
+ , the parts of the agreement that deal
+ with parenting and support can be
+
+ enforced
+ as if they were in a court order. You will
+ need to fill out a requisition (Form
+ F17.1
+ or
+ F17.2 )
+ and pay a $30 filing fee. The requisition is a request to file the agreement. When you fill out the requisition,
+ you'll be the claimant, and the other party will be the respondent. These labels are
+ used even if you're filing the agreement with no plans to start a court application.
+
What does the law mean by “best interests of the child”?
+
+ The “best interests of the child” is a legal test used to decide what would best
+ protect your child’s physical, psychological, and emotional safety, security and
+ well-being. To determine what is in the child’s best interests when making parenting
+ arrangements, you must consider factors including:
+
+
+
The child’s emotional health and well-being
+
The child’s views, unless it would be inappropriate to consider them
+
The child’s relationships with parents, guardians, and other important people
+
The history of care, and
+
The impact of any family violence
+
+
+ When you make an agreement about parenting arrangements after a separation, the law says
+ you must only consider the child’s best interests. And if you go to court, the judge can
+ only consider the child’s best interests in making parenting orders.. For more information
+ on the
+
+ best interests of the child
+
+ please refer to the Family Law in B.C. website.
+
+
The benefits of using both courts (Provincial Court, Supreme Court)
+
+ In some situations, you may find it best to use both courts. You could get most of your
+ orders in Provincial Court, and then just apply for your divorce order in Supreme Court.
+ (You could also choose to make an agreement about parenting, support, and property and
+ then just apply to the Supreme Court for a divorce.) This approach might save you money
+ and time, especially if you and your spouse agree on what should be done.
+
+
+ On the other hand, it could make things more complicated to have to deal with two
+ different courts. It can also be a problem if you ask more than one court to deal with
+ issues about parenting and support.
+
+{% endblock %}
\ No newline at end of file
diff --git a/edivorce/apps/core/templates/question/06_children.html b/edivorce/apps/core/templates/question/06_children_your_children.html
similarity index 100%
rename from edivorce/apps/core/templates/question/06_children.html
rename to edivorce/apps/core/templates/question/06_children_your_children.html
diff --git a/edivorce/apps/core/urls.py b/edivorce/apps/core/urls.py
index 708dcc66..cea22e21 100644
--- a/edivorce/apps/core/urls.py
+++ b/edivorce/apps/core/urls.py
@@ -27,6 +27,7 @@ urlpatterns = [
url(r'^pdf-form(?P[0-9]{1,3}(_we|_claimant1|_claimant2)?)$', pdf.form, name="pdf_form"),
url(r'^prequalification/step_(?P[0-9]{2})$', main.prequalification, name="prequalification"),
+ url(r'^question/(?P.*)/(?P.*)/$', main.question, name="question_steps"),
url(r'^question/(?P.*)$', main.question, name="question_steps"),
url(r'^current', system.current, name="current"),
url(r'^$', main.home, name="home"),
diff --git a/edivorce/apps/core/views/main.py b/edivorce/apps/core/views/main.py
index b367f2b8..89c692f4 100644
--- a/edivorce/apps/core/views/main.py
+++ b/edivorce/apps/core/views/main.py
@@ -169,11 +169,12 @@ def dashboard_nav(request, nav_step):
@bceid_required
-def question(request, step):
+def question(request, step, sub_step=None):
"""
View for rendering main divorce questionaire questions
"""
- template = 'question/%02d_%s.html' % (template_step_order[step], step)
+ sub_page_template = '_{}'.format(sub_step) if sub_step else ''
+ template = 'question/%02d_%s%s.html' % (template_step_order[step], step, sub_page_template)
responses_dict_by_step = get_responses_from_db_grouped_by_steps(request.user, True)
@@ -190,6 +191,8 @@ def question(request, step):
if step == "location":
responses_dict['registries'] = sorted(list_of_registries)
+ responses_dict['sub_step'] = sub_step
+
return render(request, template_name=template, context=responses_dict)
diff --git a/edivorce/fixtures/Question.json b/edivorce/fixtures/Question.json
index 1bca1274..e3c95666 100644
--- a/edivorce/fixtures/Question.json
+++ b/edivorce/fixtures/Question.json
@@ -806,5 +806,15 @@
},
"model": "core.question",
"pk": "claimant_children"
+},
+{
+ "fields": {
+ "name": "Do you have a separation agreement that sets out what you've agreed to around parenting and child support?",
+ "description": "For Step 6, Your children - What are you asking for",
+ "summary_order": 0,
+ "required": "Required"
+ },
+ "model": "core.question",
+ "pk": "have_separation_agreement"
}
]