diff --git a/edivorce/apps/core/management/commands/npm_build.py b/edivorce/apps/core/management/commands/npm_build.py new file mode 100644 index 00000000..2cbd7918 --- /dev/null +++ b/edivorce/apps/core/management/commands/npm_build.py @@ -0,0 +1,11 @@ +import os + +from django.contrib.staticfiles.management.commands.runserver import ( + Command as NpmBuildCommand, +) + +class Command(NpmBuildCommand): + + def run(self, **options): + os.system("npm --prefix /opt/app-root/src/vue install /opt/app-root/src/vue --loglevel info") + os.system("npm --prefix /opt/app-root/src/vue run build") \ No newline at end of file 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/static/js/vendor/autogrow.js b/edivorce/apps/core/static/js/vendor/autogrow.js index 683bdd07..8eee519b 100644 --- a/edivorce/apps/core/static/js/vendor/autogrow.js +++ b/edivorce/apps/core/static/js/vendor/autogrow.js @@ -1,4 +1,4 @@ -;(function($){ +;(function($){ //pass in just the context as a $(obj) or a settings JS object $.fn.autogrow = function(opts) { var that = $(this).css({overflow: 'hidden', resize: 'none'}) //prevent scrollies @@ -20,7 +20,7 @@ //if the element is "invisible", we get an incorrect height value //to get correct value, clone and append to the body. if (elem.is(':visible') || parseInt(elem.css('height'), 10) > 0) { - min = parseInt(elem.css('height'), 75) || elem.innerHeight(); + min = parseInt(elem.css('height'), 10) || elem.innerHeight(); } else { clone = elem.clone() .addClass(opts.cloneClass) @@ -35,11 +35,12 @@ min = clone.innerHeight(); clone.remove(); } + min = Math.max(min, 75); if (opts.fixMinHeight) { elem.data('autogrow-start-height', min); //set min height } elem.css('height', min); - + if (opts.onInitialize && elem.length) { resize.call(elem[0]); } @@ -47,7 +48,7 @@ opts.context .on('keyup paste', selector, resize) ; - + function resize (e){ var box = $(this) , oldHeight = box.innerHeight() @@ -63,7 +64,7 @@ box.innerHeight(newHeight); notifyGrown(); } - + } else if (!e || e.which == 8 || e.which == 46 || (e.ctrlKey && e.which == 88)) { //user is deleting, backspacing, or cutting if (oldHeight > minHeight) { //shrink! //this cloning part is not particularly necessary. however, it helps with animation @@ -75,19 +76,19 @@ //add clone class for extra css rules .addClass(opts.cloneClass) //make "invisible", remove height restriction potentially imposed by existing CSS - .css({position: 'absolute', zIndex:-10, height: ''}) + .css({position: 'absolute', zIndex:-10, height: ''}) //populate with content for consistent measuring - .val(box.val()) + .val(box.val()) ; box.after(clone); //append as close to the box as possible for best CSS matching for clone do { //reduce height until they don't match newHeight = clone[0].scrollHeight - 1; clone.innerHeight(newHeight); } while (newHeight === clone[0].scrollHeight); - newHeight++; //adding one back eliminates a wiggle on deletion + newHeight++; //adding one back eliminates a wiggle on deletion clone.remove(); box.focus(); // Fix issue with Chrome losing focus from the textarea. - + //if user selects all and deletes or holds down delete til beginning //user could get here and shrink whole box newHeight < minHeight && (newHeight = minHeight); @@ -99,11 +100,11 @@ notifyShrunk(); } } - + } else { //just set to the minHeight box.innerHeight(minHeight); } - } + } } // Trigger event to indicate a textarea has grown. diff --git a/edivorce/apps/core/templates/base.html b/edivorce/apps/core/templates/base.html index 96f609df..e1555c3a 100644 --- a/edivorce/apps/core/templates/base.html +++ b/edivorce/apps/core/templates/base.html @@ -18,6 +18,8 @@ {% endcompress %} + {% block extra_css %} + {% endblock %} {% include 'partials/gtm_head.html' %} +{% 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 %} + +{% block extra_css %} + + + + + +{% endblock %} + +{% block extra_js %} + + + +{% 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..d7d634e8 --- /dev/null +++ b/edivorce/apps/core/templates/dashboard/initial_filing.html @@ -0,0 +1,74 @@ +{% extends 'base.html' %} +{% load static %} + +{% block title %}{{ block.super }}: Overview{% endblock %} + +{% block progress %}{% include "partials/dashnav.html" with active_page=active_page %}{% endblock %} + +{% block content %} +
+ 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?
+ +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 %} + +{% block extra_css %} + + + + + +{% endblock %} + +{% block extra_js %} + + + +{% 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 %} ++ 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. +
++ 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: +
+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.
+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.
+ +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 (?).
+$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. -
+$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. +
+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 %} -- 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 . -
- -+ -
-
- Get help opening and saving PDF forms | - Changing my forms -
++ 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. -
-- 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. -
-- 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. -
-- 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. -
-$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. -
-+ 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. +
++ 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. +
++ 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. +
++ 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. +
+$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
+
+ Some text here +
++ Some text here +
+$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 - an Affidavit + a Child Support + Affidavit - Desk Order Divorce Form (F38). This document sets out the facts - of your marriage and separation. -
-- The affidavit will need to be - - sworn or affirmed - . You can either - jointly prepare {% if children_of_marriage == 'YES' %}one Child Support Affidavit (F37) and{% endif %} one Affidavit — Desk Order Divorce form (F38) or - complete two versions {% if children_of_marriage == 'YES' %}of each{% endif %} and - + 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. +
+$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.
+
+
+
+
+ Child Support Affidavit (F37) - signing separately
+
+
+
+
-
+ Claimant 1
+
+ - 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
+
+ |
-
- Please follow these steps to ensure your affidavit does not get rejected: -
-The following additional documents are required as part of your filing:
Staple each form together and then fasten all forms with a paper clip, - in the following order:
- -- 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. -
-- If you need to make changes to your forms, you can return - to the Divorce Questionnaire section to review and update - your answers. You will then need to Review and Print your - forms again. -
-+ If you need to make changes to your forms, you can return + to the Divorce Questionnaire section to review and update + your answers. You will then need to Review and Print your + forms again. +
++ To complete your application for divorce, you must swear/affirm (?) your affidavit(s) (?). The affidavit(s) must be sworn/affirmed by both you and + your spouse. You have a choice on how you will both sign. +
+You must both go together to the registry or to a commissioner for taking affidavits to sign the affidavit(s).
+There are strict rules for when you can swear or affirm your Affidavit — Desk Order Divorce (Form 38). You must do it:
+You can each swear/affirm your own version of the affidavit (you can go separately to the registry or a commissioner for taking affidavits + to sign the affidavit(s)).
+There are strict rules for when you can swear or affirm your Affidavit — Desk Order Divorce (Form 38). You must:
+You can file (?) your application for divorce in different ways.
+{% endif %} +To file (?) your documents, you will need:
+To file online you will also need:
+To file in-person you need only the items list above.
+Based on your previous selections, you must file In-person.
+To file in-person you need only the items list above.
+An e-mail address is required to setup a virtual session (?). What is the best e-mail address to contact you at in order to setup the virtual + session?
+Based on availability and previous selections you and your spouse must sign with a lawyer, notary or other commissioner (?) for taking affidavits.
+Now that you have reviewed and printed all of your forms, you’ll need to get your affidavits sworn / affirmed (?).
+ {% elif how_to_file == 'Online' %} +You must have a Court Filing Number in order to proceed with swearing / affirming (?) your affidavits. If you do not have a Court Filing + Number (?) return to the Wait for Court Filing Number step.
+ {% else %} +You must select whether you are filing online or in-person in the Signing and + Filing Options step.
+ {% endif %} ++ You’ll need to have printed copies of the following form(s) with you for swearing / affirming (?): +
++ You and your spouse will swear / affirm (?) together in a virtual session (?) with the court registry: +
++ The process for a virtual session is as follows: +
++ Once you have filed your documentation (see next step), a member of the court registry will be in touch soon to book your virtual + session. +
++ You and your spouse will swear / affirm (?) in a virtual session (?) separately with the court registry: +
++ The process for a virtual session is as follows: +
++ Once you have filed your documentation (see next step), a member of the court registry will be in touch soon to book your virtual + session. +
++ You and your spouse will swear / affirm (?) together with a commissioner (?): +
++ Prepare for your swearing by ensuring you: +
++ If you are planning to sign / swear at the court registry then additionally you should: +
++ If you are planning to sign / swear with lawyer, notary or other commissioner please contact them directly. +
++ You and your spouse will swear / affirm (?) separately with a commissioner (?): +
++ Prepare for your swearing by ensuring you: +
++ If you are planning to sign / swear at the court registry then additionally you should: +
++ If you are planning to sign / swear with lawyer, notary or other commissioner please contact them directly. +
+You will swear / affirm (?) in a virtual session (?) with the court registry:
+The process for a virtual session is as follows:
+Once you have filed your documentation (see next step), a member of the court registry will be in touch soon to book your virtual + session.
+Your spouse will swear / affirm (?) with a commissioner (?):
+Have your spouse prepare for their swearing by ensuring they:
+If they are planning to sign / swear at the court registry then additionally they should:
+If they are planning to sign / swear with lawyer, notary or other commissioner please contact them directly.
+You will swear / affirm (?) with a commissioner (?):
+Prepare for your swearing by ensuring you:
+If you are planning to sign / swear at the court registry then additionally you should:
+If they are planning to sign / swear with lawyer, notary or other commissioner please contact them directly.
+Your spouse will swear / affirm (?) in a virtual session (?) with the court registry:
+The process for a virtual session is as follows:
+Once you have filed your initial documentation (see next step), a member of the court registry will be in touch soon to book your + spouse’s virtual session.
++ You’ve successfully completed your initial filing with the Court Registry. +
++ Your CSO Online Package # (?) is 123-456-789 +
++ You can view the following items at any time: +
++ In order to complete your divorce you’ll need to file the final set of documents. To do this you’ll require a Court Filing Number (?) which + will + be provided from the Court Registry once they have reviewed and approval your initial filing. This review can take up to a week to complete. + You’ll receive an e-mail with details of your initial filing. +
++ If you have any questions or concerns about your initial filing, please contact CSO Online Support at Courts.CSO@gov.bc.ca and include your + Online + Package # (?). +
++ Once you have received your Court Filing Number via e-mail, click Next to proceed with the remaining steps in the process. +
+{% endblock %} + +{% block backToDashboard %} + +{% endblock %} + +{% block formBack %}{% url 'dashboard_nav' 'initial_filing' %}{% endblock %} +{% block formNext %}{% url 'dashboard_nav' 'swear_forms' %}{% 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/partials/dashnav.html b/edivorce/apps/core/templates/partials/dashnav.html index aba59de7..8f671dfd 100644 --- a/edivorce/apps/core/templates/partials/dashnav.html +++ b/edivorce/apps/core/templates/partials/dashnav.html @@ -6,21 +6,35 @@ Divorce Questionnaire + + + Signing & Filing Options + Review and Print Forms - - - File Documents +{% if how_to_file == 'Online' %} + + + Initial Filing - + - Wait + Wait for Court Filing # + +{% endif %} + + + Swear Forms + + + + Final Filing - + - Check with Registry + Next StepsMissing a form required on this page? Check the Review Forms step.
+The following forms will be automatically filed for you:
+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.
+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.
+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]
+The Notice of Joint Family Claim Form (F1) will be automatically filed for you.
+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)
+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)
+