diff --git a/edivorce/apps/core/static/css/main.scss b/edivorce/apps/core/static/css/main.scss index 83b3cb9d..d3dc2d26 100644 --- a/edivorce/apps/core/static/css/main.scss +++ b/edivorce/apps/core/static/css/main.scss @@ -804,6 +804,7 @@ fieldset[disabled] .btn-radio:hover { outline: none; } + .btn-radio-long { width: auto; white-space: normal; diff --git a/edivorce/apps/core/static/js/functions.js b/edivorce/apps/core/static/js/functions.js index 31f70cdc..2ded45e7 100644 --- a/edivorce/apps/core/static/js/functions.js +++ b/edivorce/apps/core/static/js/functions.js @@ -341,8 +341,13 @@ var getValue = function(el, question){ } }); return JSON.stringify(value); - } - else{ + } else if (el.is("input[type=radio]")) { + if (el.prop('checked')) { + return el.val(); + } else { + return ''; + } + } else { return el.val(); } }; diff --git a/edivorce/apps/core/static/js/signing-filing.js b/edivorce/apps/core/static/js/signing-filing.js new file mode 100644 index 00000000..8dc885d2 --- /dev/null +++ b/edivorce/apps/core/static/js/signing-filing.js @@ -0,0 +1,97 @@ +$(window).load(function () { + function setSignSeparatelyDefaults() { + $("#sign-in-person-both").prop('checked', false); + $("#sign-virtual-both").prop('checked', false); + $("#sign-virtual-both").trigger('change'); + if ($("input:radio[name='signing_location_you']:checked").length === 0) { + $("#sign-in-person-you").prop('checked', true).trigger('change'); + } + if ($("input:radio[name='signing_location_spouse']:checked").length === 0) { + $("#sign-in-person-spouse").prop('checked', true).trigger('change'); + } + } + + function setSignTogetherDefaults() { + $("#sign-in-person-you").prop('checked', false); + $("#sign-virtual-you").prop('checked', false).trigger('change'); + $("#sign-in-person-spouse").prop('checked', false); + $("#sign-virtual-spouse").prop('checked', false).trigger('change'); + if ($("input:radio[name='signing_location']:checked").length === 0) { + $("#sign-in-person-both").prop('checked', true).trigger('change'); + } + } + + function toggleSigningLocation() { + if ($("#file-online").prop('checked')) { + $("#signing-location").show(); + + if ($("#sign-together").prop('checked')) { + setSignTogetherDefaults(); + $("#signing-location-together").show(); + $("#signing-location-separately").hide(); + } else if ($("#sign-separately").prop('checked')) { + setSignSeparatelyDefaults(); + $("#signing-location-together").hide(); + $("#signing-location-separately").show(); + } + } else { + $("#signing-location").hide(); + $("#signing-location-together").hide(); + $("#signing-location-separately").hide(); + setSignTogetherDefaults(); + setSignSeparatelyDefaults(); + } + } + + function toggleSignVirtually() { + if ($("#sign-virtual-both").prop('checked') || $("#sign-virtual-you").prop('checked') || $("#sign-virtual-spouse").prop('checked')) { + $("#sign-virtually").show(); + } else { + $("#sign-virtually").hide(); + } + if ($("#sign-virtual-both").prop('checked') || $("#sign-virtual-you").prop('checked')) { + $("#email-you").show(); + } else { + $("#email-you").hide(); + } + if ($("#sign-virtual-spouse").prop('checked')) { + $("#email-spouse").show(); + } else { + $("#email-spouse").hide(); + } + } + + function toggleFileInPerson() { + if ($("#file-in-person").prop('checked')) { + $("#sign-in-person").show(); + $("#signing-location").hide(); + } else if ($("#file-online").prop('checked')) { + $("#sign-in-person").hide(); + $("#signing-location").show(); + } + } + + function selectDefaults() { + if ($("input:radio[name='how_to_sign']:checked").length === 0) { + $("#sign-together").prop('checked', true).trigger('change'); + } + if ($("input:radio[name='how_to_file']:checked").length === 0) { + $("#file-online").prop('checked', true).trigger('change'); + } + } + + selectDefaults() + + $("#sign-separately, #sign-together, #file-online, #file-in-person").change(toggleSigningLocation); + $("#sign-virtual-both, " + + "#sign-in-person-both, " + + "#sign-virtual-you, " + + "#sign-in-person-you, " + + "#sign-in-person-spouse, " + + "#sign-virtual-spouse").change(toggleSignVirtually); + $("#file-in-person, #file-online").change(toggleFileInPerson); + + toggleSigningLocation(); + toggleSignVirtually(); + toggleFileInPerson(); +}); \ No newline at end of file diff --git a/edivorce/apps/core/templates/base.html b/edivorce/apps/core/templates/base.html index 96f609df..52f5b8bd 100644 --- a/edivorce/apps/core/templates/base.html +++ b/edivorce/apps/core/templates/base.html @@ -116,14 +116,14 @@ - {% block sidebar %} -
- -

More information

- {% block sidebarText %} - {% endblock %} -
- {% endblock %} +{# {% block sidebar %}#} +{#
#} +{# #} +{#

More information

#} +{# {% block sidebarText %}#} +{# {% endblock %}#} +{#
#} +{# {% endblock %}#} @@ -215,6 +215,7 @@ + {% endcompress %} diff --git a/edivorce/apps/core/templates/dashboard/final_filing.html b/edivorce/apps/core/templates/dashboard/final_filing.html new file mode 100644 index 00000000..2f9c29bf --- /dev/null +++ b/edivorce/apps/core/templates/dashboard/final_filing.html @@ -0,0 +1,192 @@ +{% extends 'base.html' %} +{% load input_field %} + +{% block title %}{{ block.super }}: Overview{% endblock %} + +{% block progress %}{% include "partials/dashnav.html" with active_page=active_page %}{% endblock %} + +{% block content %} +

Final Filing

+ {% if how_to_file == 'Online' %} +

+ Now that you have received a Court Filing Number and both sworn / affirmed your affidavits, you can proceed with the filing of your + remaining + documentation. If you have not received a Court Filing Number check the Wait for Court Filing step. If you have not sworn / affirmed your + affidavits, check the Swear Forms step. Enter your Court Filing Number below: +

+
{% input_field type="text" name="court_filing_no" id="court_filing_no" class="input-inline form-control" %} +
+ {% endif %} + {% if signing_location == 'Virtual' %} +
+

+ Upload the signed / sworn and scanned Child Support Affidavit (F37) + {% include 'partials/upload.html' %} +

+

+ Upload the signed / sworn and scanned Affidavit - Desk Order Divorce Form (F38) + {% include 'partials/upload.html' %} +

+
+ {% elif signing_location_you == 'Virtual' and signing_location_spouse == 'Virtual' %} +
+

+ Upload the signed / sworn and scanned Child Support Affidavit (F37) - For You + {% include 'partials/upload.html' %} +

+

+ Upload the signed / sworn and scanned Child Support Affidavit (F37) - For Your Spouse + {% include 'partials/upload.html' %} +

+

+ Upload the signed / sworn and scanned Affidavit - Desk Order Divorce Form (F38) - For You + {% include 'partials/upload.html' %} +

+

+ Upload the signed / sworn and scanned Affidavit - Desk Order Divorce Form (F38) - For Your Spouse + {% include 'partials/upload.html' %} +

+
+ {% elif how_to_file == 'Online' %} + {% if signing_location or signing_location_you and signing_location_spouse %} +
+

Missing a form required on this page? Check the Review Forms step.

+

The following forms will be automatically filed for you:

+ +

+ Upload the signed / sworn and scanned Child Support Affidavit (F37) + {% include 'partials/upload.html' %} +

+

+ Upload the signed / sworn and scanned Affidavit - Desk Order Divorce Form (F38) + {% include 'partials/upload.html' %} +

+

+ Upload the signed and scanned Draft Final Order Form (F52) + {% include 'partials/upload.html' %} +

+

+ Upload the signed and scanned Electronic Fipng Statement (F96) for You + {% include 'partials/upload.html' %} +

+

+ Upload the signed and scanned Electronic Fipng Statement (F96) for Your Spouse + {% include 'partials/upload.html' %} +

+

+ Complete, scan and upload the Agreement as to Annual Income (F9) form + {% include 'partials/upload.html' %} +

+

+ Complete, scan and upload the Identification of Apppcant (VSA 512) for You + {% include 'partials/upload.html' %} +

+

+ Complete, scan and upload the Identification of Apppcant (VSA 512) for Your Spouse + {% include 'partials/upload.html' %} +

+
+ {% else %} +
+

You need to select a signing method in the Signing & Filing Options + step.

+
+ {% endif %} + {% elif how_to_sign == 'Together' %} +
+

Staple each form together and then fasten all forms with a paper clip, in the following order:

+ +

Also ensure you bring the following additional documentation:

+ +

If you have other court orders or a written separation agreement, they should also be attached to your Affidavit — Desk Order Divorce + Form

+

(F38). Note that these agreements or orders must not contradict what's in your divorce application.

+

You have indicated that you will file at the following court registry:

+

[City]

+

[Address]

+

[Postal Code]

+

Once sign / sworn and filed, you will receive a Court Filing Number (?). This number will be used if you need to file any + additional documentation.

+
+ {% elif how_to_sign == 'Separately' %} +
+

Staple each form together and then fasten all forms with a paper clip, in the following order:

+ +
+

Also ensure you bring the following additional documentation:

+ +

If you have other court orders or a written separation agreement, they should also be attached to your Affidavit — Desk Order Divorce + Form

+

(F38). Note that these agreements or orders must not contradict what's in your divorce application.

+

You have indicated that you will file at the following court registry:

+

[City]

+

[Address]

+

[Postal Code]

+

Once sign / sworn and filed, you will receive a Court Filing Number (?). This number will be used if you need to file any + additional documentation.

+

Spousal Documentation Requirements

+

The following sworn / affirmed affidavits still remains to be filed:

+ +

Either you or your spouse must file this documentation using the Court Filing Number (?) that you received via e-mail. If you have + not received a Court Filing Number then please check to the Wait for Court Filing Number step.

+

You have indicated that you will file at the following court registry:

+

[City]

+

[Address]

+

[Postal Code]

+
+ {% endif %} + {% if how_to_file == 'Online' %} +

Filing with Court Services Online

+

When you click Next, you will be taken to the Court Services Online e-filing hub. In the next few steps you will be able to do a final + review of your filed documentation, pay for your filing and (if completed successfully) receive a Package Number. This final step will + complete your divorce filing.

+ {% endif %} +{% endblock %} + +{% block backToDashboard %} + +{% endblock %} + +{% block formBack %}{% url 'dashboard_nav' 'swear_forms' %}{% endblock %} +{% block formNext %}{% url 'dashboard_nav' 'next_steps' %}{% endblock %} + +{% block sidebarNav %} + +{% endblock %} +{% block sidebarText %} + {% include "dashboard/partials/sidebar_help.html" %} +{% endblock %} \ No newline at end of file diff --git a/edivorce/apps/core/templates/dashboard/initial_filing.html b/edivorce/apps/core/templates/dashboard/initial_filing.html new file mode 100644 index 00000000..35a31d68 --- /dev/null +++ b/edivorce/apps/core/templates/dashboard/initial_filing.html @@ -0,0 +1,161 @@ +{% extends 'base.html' %} + +{% block title %}{{ block.super }}: Overview{% endblock %} + +{% block progress %}{% include "partials/dashnav.html" with active_page=active_page %}{% endblock %} + +{% block content %} +

Initial Filing

+ {% if how_to_file == 'Online' %} +

+ Your filing (submitting completed documents to the court registry) occurs in two parts. The initial filing initiates the divorce + proceeding. Once + initial filing is complete you will receive a Court Filing Number. This number is important as it will allow you or your spouse to file + the + remaining documents required to complete your divorce. +

+

Missing a form required on this page? Check the Review Forms step.

+

Need help with Scanning your documents?

+
+ {% if signing_location == 'In-person' or signing_location_you == 'In-person' %} +
+

The Notice of Joint Family Claim Form (F1) will be automatically filed for you.

+
+
+

Upload a scan of your Proof of Marriage (?) + {% include 'partials/upload.html' %}

+
+
+

Scan and upload the sworn Affidavit of Interpreter Form (?) + {% include 'partials/upload.html' %}

+
+
+

Complete, scan and upload the Registration of Divorce Proceedings (?) form + {% include 'partials/upload.html' %}

+
+ {% elif signing_location_you == 'Virtual' and signing_location_spouse == 'In-person' %} +

The following forms will be automatically filed for you:

+ +

The following forms will be submitted for you but require swearing / affirming (?) before filing (see next step for details)

+ +
+
+

Upload a scan of your Proof of Marriage (?) + {% include 'partials/upload.html' %} +

+
+

Scan and upload the sworn Affidavit of Interpreter Form (?) + {% include 'partials/upload.html' %} +

+
+

Upload the signed and scanned Draft Final Order Form (F52) + {% include 'partials/upload.html' %} +

+
+

Upload the signed and scanned Electronic Filing Statement (F96) for You + {% include 'partials/upload.html' %} +

+
+

Complete, scan and upload the Registration of Divorce Proceedings form + {% include 'partials/upload.html' %} +

+
+

Complete, scan and upload the Agreement as to Annual Income (F9) form + {% include 'partials/upload.html' %} +

+
+

Complete, scan and upload the Identification of Applicant (VSA 512) for You + {% include 'partials/upload.html' %} +

+
+ {% else %} +

The following forms will be automatically filed for you:

+ +

The following forms will be submitted for you but require swearing / affirming (?) before filing (see next step for details)

+ +
+
+

Upload a scan of your Proof of Marriage (?) + {% include 'partials/upload.html' %} +

+
+

Scan and upload the sworn Affidavit of Interpreter Form (?) + {% include 'partials/upload.html' %} +

+
+

Upload the signed and scanned Draft Final Order Form (F52) + {% include 'partials/upload.html' %} +

+
+

Upload the signed and scanned Electronic Filing Statement (F96) for You + {% include 'partials/upload.html' %} +

+
+

Upload the signed and scanned Electronic Filing Statement (F96) for Your Spouse + {% include 'partials/upload.html' %} +

+
+

Complete, scan and upload the Registration of Divorce Proceedings form + {% include 'partials/upload.html' %} +

+
+

Complete, scan and upload the Agreement as to Annual Income (F9) form + {% include 'partials/upload.html' %} +

+
+

Complete, scan and upload the Identification of Applicant (VSA 512) for You + {% include 'partials/upload.html' %} +

+
+

Complete, scan and upload the Identification of Applicant (VSA 512) for Your Spouse + {% include 'partials/upload.html' %} +

+
+ {% endif %} +
+

Filing with Court Services Online

+

When you click Next, you will be taken to the Court Services Online e-filing hub. In the next few steps you will be able to do a final + review of your filed documentation, pay for your filing and (if completed successfully) receive a Package Number.

+

Once your filings have been reviewed by the Court Registry (?), you will be provided a Court Filing Number (?) via e-mail. This may + take up + to one week.

+

You will need your Court Filing Number if you are filing any additional documentation.

+ {% elif how_to_file == 'In-person' %} +

+ You don't need to complete this step. Go to Swear Forms for further instruction. +

+ {% else %} +

+ You must select how you want to file in the Signing & Filing Options step. +

+ {% endif %} + +{% endblock %} + +{% block backToDashboard %} + +{% endblock %} + +{% block formBack %}{% url 'dashboard_nav' 'print_form' %}{% endblock %} +{% block formNext %}{% url 'dashboard_nav' 'wait_for_number' %}{% endblock %} + +{% block sidebarNav %} + +{% endblock %} +{% block sidebarText %} + {% include "dashboard/partials/sidebar_help.html" %} +{% endblock %} \ No newline at end of file diff --git a/edivorce/apps/core/templates/dashboard/next_steps.html b/edivorce/apps/core/templates/dashboard/next_steps.html new file mode 100644 index 00000000..4b4cebd8 --- /dev/null +++ b/edivorce/apps/core/templates/dashboard/next_steps.html @@ -0,0 +1,78 @@ +{% extends 'base.html' %} + +{% block title %}{{ block.super }}: Overview{% endblock %} + +{% block progress %}{% include "partials/dashnav.html" with active_page=active_page %}{% endblock %} + +{% block content %} +

Filing Completed

+ {% if how_to_file == 'Online' %} +

+ You have successfully completed filing online. +

+

+ Your CSO Online Package # (?) is 123-456-789 +

+

+ Once your filing has been reviewed by the Court Registry (?), you will receive an e-mail confirmation of your filing. This e-mail will + include + a Court Filing Number (?), please keep this number for your records and use it if filing any additional documentation. +

+
+

Filing Status

+

+ You will receive e-mails from the system as your filing is processed by the Court Registry. You can also check here to see the status + of + your filing: +

+

+ Current Filing Status: Submitted - Your filing has been submitted to the Court Registry and will be reviewed soon. +

+

+ You can view the following items at any time: +

+ +
+ {% endif %} +
+

What happens at the registry?

+

The court registry staff will check your documents to make sure they've been completed properly.

+

+ If you're not sure whether you've filled out the documents correctly, get some + legal advice before you file your documents — from + family duty counsel + or (in Vancouver) from the Vancouver + Justice Access Centre Self-Help and + Information Services. +

+

If the registry is satisfied that your documents are in order, they will stamp the documents with the date, the court seal, and a file + number.

+

You now have a divorce file open in the Supreme Court.

+
+
+

Next Steps

+

Once a judge has reviewed your divorce, you will receive an e-mail from the court registry with information about the next steps. If your + divorce is approved, you can move to the next step and order a certificate of divorce.

+ +

Haven’t Heard Back?

+

If you don’t hear back within 30 days from the court registry. Please contact CSO Online Support at Courts.CSO@gov.bc.ca and include your + Court Filing # (?) / Filing Location or Online Package Number (?).

+
+{% endblock %} + +{% block backToDashboard %} + +{% endblock %} + +{% block formBack %}{% url 'dashboard_nav' 'final_filing' %}{% endblock %} +{% block formNext %}{% url 'dashboard_nav' 'order_certificate' %}{% endblock %} + +{% block sidebarNav %} + +{% endblock %} +{% block sidebarText %} + {% include "dashboard/partials/sidebar_help.html" %} +{% endblock %} \ No newline at end of file diff --git a/edivorce/apps/core/templates/dashboard/order_certificate.html b/edivorce/apps/core/templates/dashboard/order_certificate.html index 4aed6398..204c17d1 100644 --- a/edivorce/apps/core/templates/dashboard/order_certificate.html +++ b/edivorce/apps/core/templates/dashboard/order_certificate.html @@ -5,31 +5,39 @@ {% block progress %}{% include "partials/dashnav.html" with active_page=active_page %}{% endblock %} {% block content %} -

Order a Certificate of Divorce (Optional)

-

$40 for each Certificate of Divorce (as of March 2013)

-

- Anytime after 31 days have passed and the divorce has become final, you can go back to the registry to ask for a Certificate of Divorce Form (F56). -

-

- This step isn't mandatory. If you don't go to the court registry to get a Certificate of Divorce, your divorce will still be legal. If you ever have to show legal proof of your divorce, you can use your divorce order. However, you may prefer just to show a certificate rather than all the details in the order. -

-

- For details on - how to apply for a Certificate of Divorce - refer to the Legal Services Society website. -

+

Order a Certificate of Divorce (Optional)

+

$40 for each Certificate of Divorce (as of March 2013)

+

+ Anytime after 31 days have passed and the divorce has become final, you can go back to the registry to ask for a Certificate of Divorce Form + (F56). +

+

+ This step isn't mandatory. If you don't go to the court registry to get a Certificate of Divorce, your divorce will still be legal. If you + ever have to show legal proof of your divorce, you can use your divorce order. However, you may prefer just to show a certificate rather than + all the details in the order. +

+

+ For details on + how to apply for a Certificate of Divorce + refer to the Legal Services Society website. +

+

Out of Country Certificate of Divorce Requirements

+

If you are requesting a Certificate of Divorce from outside Canada, please check with your country’s requirements around the Certificate + itself. + The country of residence may require a hand-signed and/or sealed Certificate of Divorce.

+

For details on how to apply please complete the following form for a Hand-Signed and Seals Certificate of Divorce.

{% endblock %} {% block backToDashboard %} - + {% endblock %} {% block formbuttons %} - + {% endblock %} {% block sidebarNav %} - + {% endblock %} {% block sidebarText %} {% include "dashboard/partials/sidebar_help.html" %} diff --git a/edivorce/apps/core/templates/dashboard/print_form.html b/edivorce/apps/core/templates/dashboard/print_form.html index f7ae5fd4..0a3c77d7 100644 --- a/edivorce/apps/core/templates/dashboard/print_form.html +++ b/edivorce/apps/core/templates/dashboard/print_form.html @@ -5,15 +5,15 @@ {% block progress %}{% include "partials/dashnav.html" with active_page=active_page %}{% endblock %} {% block content %} -

Review and Print your Divorce Forms

-

- To get divorced, you need to get a divorce order. Only the court has the - ability to divorce a married couple. To get a court order you have to - start a court case. What this means is you will have to print off the forms - listed below, and file them (open your court case) at a - court registry . -

- -

 

+

-

Print These Forms

+

 

-

- Get help opening and saving PDF forms | - Changing my forms -

+

Print These Forms

-
- -

- - Review and Print - +

+ Get help opening and saving PDF forms | + Changing my forms

-
-
-
-

- The Notice of Joint Family Claim Form (F1) is a document that - starts the court file for your divorce. It states the grounds - for the divorce and gives information about you and your spouse, - as well as the details about your marriage and separation. -

-
-
-
-
- -

- - Review and Print - -

-
-
-
-

- This form tells the court that you are asking for an order - (decision) from a judge. The Requisition also tells the court - what documents you’re providing to support your application. -

-
-
-
-
- -

- - Review and Print - -

-
-
-
-

- A draft Final Order sets out what orders (decision) you want the - court to make. You and your spouse are responsible for writing - out the order. The judge or master who reviews your case doesn't - write the order. The final order you draft will become your - divorce order, once the judge has signed it. -

-
    -
  • - Write draft order - - List what orders you want the court to make. -
  • -
  • File draft order when you file the other forms and - documents at the court registry
  • -
  • If the judge or master makes the order you ask for, they'll - sign the draft order you filed and it becomes your court - order.
  • -
  • If there's a problem with your order and the judge or - master doesn't approve it, the court registry will let you - know. You might have to draft another version of the order or - appear in court to give the judge or master more information - about what you wrote in the order.
  • -
-
-
-
-
- -

- - Review and Print - -

-
-
-
-

- The only details you need to provide on the Certificate of - Pleadings form (F36) are your name and your spouse's name. The - Court Registrar uses this form to tell you if all your documents - are in order. If something is missing or you’ve filled in the - form incorrectly, he or she will let you know using this form. -

-

- Take the Certificate to the court registry where you filed your - Notice of Trial. After you file it, the registrar will search - the file and sign and return the Certificate to you. If - something's missing, the registrar won't sign the Certificate - and will let you know. -

-

- If everything is in order, the Registrar will sign the - Certificate of Pleadings to show the judge that they've checked - everything over. All of your document will be sent to the judge - for review. -

-
-
-
-{% if children_of_marriage == 'YES' %} -
- -

- - Review and Print - -

-
-
-
-

$40 per affidavit (if sworn at a court registry)

-

- Since your divorce won't require an appearance before a judge, you must fill out and - swear/affirm - a Child Support - Affidavit - Form (F37). This document gives information about the children and child support. -

-

- You'll notice that some of the information in the affidavit is the same as what's in your Notice of - Joint Family Claim Form (F1). Because the Notice of Joint Family Claim is not a sworn document, and - the judge/master must have sworn evidence to make a decision, you must swear or affirm that the - information in these affidavits is true. -

-
-
-

OR

-
-
- Child Support Affidavit (F37) - signing separately -
+
+ +

+ + Review and Print + +

+
+
+
+

+ The Notice of Joint Family Claim Form (F1) is a document that + starts the court file for your divorce. It states the grounds + for the divorce and gives information about you and your spouse, + as well as the details about your marriage and separation. +

+
+
-
-
- Claimant 1 + +
+ +

+ + Review and Print + +

+
+
+
+

+ This form tells the court that you are asking for an order + (decision) from a judge. The Requisition also tells the court + what documents you’re providing to support your application. +

+
-

- - Review and Print - -

-
-
-
- Claimant 2 +
+ +

+ + Review and Print + +

+
+
+
+

+ The only details you need to provide on the Certificate of + Pleadings form (F36) are your name and your spouse's name. The + Court Registrar uses this form to tell you if all your documents + are in order. If something is missing or you’ve filled in the + form incorrectly, he or she will let you know using this form. +

+

+ Take the Certificate to the court registry where you filed your + Notice of Trial. After you file it, the registrar will search + the file and sign and return the Certificate to you. If + something's missing, the registrar won't sign the Certificate + and will let you know. +

+

+ If everything is in order, the Registrar will sign the + Certificate of Pleadings to show the judge that they've checked + everything over. All of your document will be sent to the judge + for review. +

+
-

- - Review and Print - -

-
-
-{% endif %} - -
- + {% endif %} +
+ +

+ + Review, Print & Swear + +

+
+
+
+

$40 per affidavit (if sworn at a court registry)

+

+ Since your divorce won't require an appearance before a judge, + you must fill out and + swear/affirm - swear/affirm - - each one separately. -

- - - - - - - - - - -
If both of you will be coming to the court registry:If only one of you will be coming to the court registry:
- The affidavits can be signed and sworn/affirmed by both of you - when at the registry. - -

- Either you or your spouse can sign and swear/affirm ahead of - time, but the 2nd party will need to sign when at the - registry, after the Notice of Joint Family Claim has been filed. +

+ To “take an oath” in front of a lawyer, notary + public, or commissioner for taking affidavits that + statements made in court or the contents of an affidavit + are true to the best of your knowledge and belief that your + oath is “under an immediate sense of responsibility + to God”. A non-religious alternative is to affirm. + " + aria-hidden="true"> + an Affidavit + Desk Order Divorce Form (F38). This document sets out the facts + of your marriage and separation. +

+ + + + {% elif how_to_sign == 'Separately' %} + {% if children_of_marriage == 'YES' %} +
+
+
+ Child Support Affidavit (F37) - signing separately +
+
+
+
+ Claimant 1 +
+
+

+ + Review, Print & Swear +

-

- If one of you decides to swear/affirm ahead of time, at the time of filing the application, - all affidavits must have been notarized within 30 days prior to filing. +

+
+
+ Claimant 2 +
+
+

+ + Review, Print & Swear +

-
-

- Please follow these steps to ensure your affidavit does not get rejected: -

-
    -
  • Both you and your spouse need to swear/affirm the affidavit.
  • -
  • - Take photo identification with you. The person who will swear/affirm the documents for - you must be sure you are both who you say you are. -
  • -
  • - One affidavit must be sworn/affirmed after the Notice of Joint Family Claim has been filed - and within 30 days of filing the affidavit. This can be done at the registry immediately after filing the Claim. -
  • - {% if children_of_marriage == 'YES' %} -
  • - You'll need to swear both the Child Support Affidavit (F37) as well as the Affidavit Desk Order Divorce (F38). -
  • +
    +
+ {% endif %} + {% if married_marriage_like == 'Legally married' %} +
+
+
+ Affidavit Desk Order Divorce Form (F38) - signing separately +
+
+
+
+ Claimant 1 +
+
+

+ + Review, Print & Swear + +

+
+
+
+ Claimant 2 +
+
+

+ + Review, Print & Swear + +

+
+
{% endif %} - -
+ {% else %} +

You must select whether you are signing together or separately in the Signing and + Filing Options step.

+ {% endif %} -
-

Other Documents to Take to the Court Registry

-
    -
  • - Proof of marriage (original or certified Marriage Certificate or - Registration of Divorce) -
  • +
    +

    Additional Documents to Print and Complete

    +

    The following additional documents are required as part of your filing:

    • - If not in English, also provide Affidavit of Translation and English translation + Proof of marriage. Original or certified Marriage Certificate or Registration of Divorce. If not in English, also provide + Affidavit of Translation and English translation. +
    • +
    • + Completed Registration of Divorce form (Federal) +
    • +
    • + Completed Identification of Applicant (VSA 512) for anyone requesting a name change +
    • +
    • + Completed Agreement as to Annual Income (F9)
    -
  • Completed - - Registration of Divorce form - (Federal) -
  • - {% if name_change_you == 'YES' or name_change_spouse == 'YES' %} -
  • Completed - - Identification of Applicant (VSA 512) - for anyone requesting a name change -
  • - {% endif %} - {% if how_will_calculate_income == 'entered agreement' %} -
  • Completed - - Agreement as to Annual Income (F9) - -
  • - {% endif %} -
-
- -
-

Assembly Instructions

- -

Staple each form together and then fasten all forms with a paper clip, - in the following order:

- -
    -
  • Notice of Joint Family Claim Form (F1)
  • -
  • Requisition Form (F35)
  • -
  • Draft Final Order Form (F52)
  • -
  • Certificate of Pleadings Form (F36)
  • - {% if children_of_marriage == 'YES' %} -
  • Child Support Affidavit (F37)
  • - {% endif %} -
  • Affidavit — Desk Order Divorce Form (F38)
  • - {% if how_will_calculate_income == 'entered agreement' %} -
  • Agreement as to Annual Income (F9)
  • - {% endif %} -
- -

- If you have other court orders or a written separation agreement, they - should also be attached to your Affidavit — Desk Order Divorce Form (F38). - Note that these agreements or orders must not contradict what's in your divorce application. -

-
+
-