+
Also known as
- Often called
+ Now known as
+ Otherwise known as
+ With assumed name of
{% input_field type="text" name=name value=value class="form-block input-wide response-textbox" %}
{% if delete_button == "true" %}
diff --git a/edivorce/apps/core/templates/partials/name_with_alias.html b/edivorce/apps/core/templates/partials/name_with_alias.html
new file mode 100644
index 00000000..2e421ebc
--- /dev/null
+++ b/edivorce/apps/core/templates/partials/name_with_alias.html
@@ -0,0 +1,11 @@
+{% load input_field %}
+
+
+ {{ name }}
+ {% if other_names %}
+ {% multiple_values_to_list source=other_names as values %}
+ {% for alias_type, value in values %}
+ {% if value != '' and value != ' ' %} {{alias_type}} {{value}} {% endif %}
+ {% endfor %}
+ {% endif %}
+
\ No newline at end of file
diff --git a/edivorce/apps/core/templates/pdf/form1.html b/edivorce/apps/core/templates/pdf/form1.html
index d0c45ebe..c208767c 100644
--- a/edivorce/apps/core/templates/pdf/form1.html
+++ b/edivorce/apps/core/templates/pdf/form1.html
@@ -31,10 +31,10 @@
In the Supreme Court of British Columbia
- Claimant 1: {{ responses.name_you }}
+ Claimant 1:{% include "partials/name_with_alias.html" with name=responses.name_you other_names=responses.other_name_you %}
- Claimant 2: {{ responses.name_spouse }}
+ Claimant 2:{% include "partials/name_with_alias.html" with name=responses.name_spouse other_names=responses.other_name_spouse %}
diff --git a/edivorce/apps/core/templates/pdf/form35.html b/edivorce/apps/core/templates/pdf/form35.html
index 30251879..10dc0e1b 100644
--- a/edivorce/apps/core/templates/pdf/form35.html
+++ b/edivorce/apps/core/templates/pdf/form35.html
@@ -1,4 +1,5 @@
{% load static %}
+{% load input_field %}
@@ -31,10 +32,12 @@
In the Supreme Court of British Columbia
- Claimant 1: {% if responses.name_you %} {{ responses.name_you }} {% else %} {% endif %}
+ Claimant 1: {% if responses.name_you %} {% include "partials/name_with_alias.html" with name=responses.name_you other_names=responses.other_name_you %}
+ {% else %} {% endif %}
- Claimant 2: {% if responses.name_spouse %} {{ responses.name_spouse }} {% else %} {% endif %}
+ Claimant 2: {% if responses.name_spouse %} {% include "partials/name_with_alias.html" with name=responses.name_spouse other_names=responses.other_name_spouse %}
+ {% else %} {% endif %}
REQUISITION
@@ -58,23 +61,28 @@
[Check all of the following boxes and file the following with this requisition. ]
+ {% check_list source=responses.form35_dummy_requisition value='option1' as dummy_option %}
- draft of the order sought;
+ draft of the order sought;
+ {% check_list source=responses.form35_dummy_requisition value='option2' as dummy_option %}
- proof that the case is an undefended family law case;
+ proof that the case is an undefended family law case;
+ {% check_list source=responses.form35_dummy_requisition value='option3' as dummy_option %}
- certificate of the registrar in Form F36;
+ certificate of the registrar in Form F36;
+ {% check_list source=responses.form35_dummy_requisition value='option4' as dummy_option %}
- filing fee.
+ filing fee.
[Check the following box and file the following with this requisition unless a response to family claim or response to counterclaim has been filed or unless this case is a joint family law case within the meaning of Rule 2-2 of the Supreme Court Family Rules .]
+ {% check_list source=responses.form35_dummy_additional value='option1' as dummy_option %}
- proof of service of the notice of family claim or counterclaim, as the case may be.
+ proof of service of the notice of family claim or counterclaim, as the case may be.
[Check the following box and file the following document with this requisition if
@@ -87,14 +95,16 @@
(b) the family law case includes a claim for child support. ]
+ {% check_list source=responses.form35_dummy_additional value='option2' as dummy_option %}
- Child Support Affidavit in Form F37.
+ Child Support Affidavit in Form F37.
[Check the following box and file the following document with this requisition if a divorce is sought. ]
+ {% check_list source=responses.form35_dummy_additional value='option3' as dummy_option %}
- affidavit in Form F38.
+ affidavit in Form F38.
diff --git a/edivorce/apps/core/templates/pdf/form36.html b/edivorce/apps/core/templates/pdf/form36.html
index 1f2cb30d..e011443c 100644
--- a/edivorce/apps/core/templates/pdf/form36.html
+++ b/edivorce/apps/core/templates/pdf/form36.html
@@ -31,10 +31,12 @@
In the Supreme Court of British Columbia
- Claimant 1: {% if responses.name_you %} {{ responses.name_you }} {% else %} {% endif %}
+ Claimant 1: {% if responses.name_you %} {% include "partials/name_with_alias.html" with name=responses.name_you other_names=responses.other_name_you %}
+ {% else %} {% endif %}
- Claimant 2: {% if responses.name_spouse %} {{ responses.name_spouse }} {% else %} {% endif %}
+ Claimant 2: {% if responses.name_spouse %} {% include "partials/name_with_alias.html" with name=responses.name_spouse other_names=responses.other_name_spouse %}
+ {% else %} {% endif %}
CERTIFICATE OF PLEADINGS
diff --git a/edivorce/apps/core/templates/question/12_uncategorized.html b/edivorce/apps/core/templates/question/12_uncategorized.html
new file mode 100644
index 00000000..af03a047
--- /dev/null
+++ b/edivorce/apps/core/templates/question/12_uncategorized.html
@@ -0,0 +1,98 @@
+{% extends 'base.html' %}{% load input_field %}
+
+{% block title %}{{ block.super }}: Review{% endblock %}
+
+{% block content %}
+
+
+
+
+
+
FORM 35
+
Filed with this requisition are:
+
+
+
+ {% input_field type="checkbox" name="form35_dummy_requisition" value="option1" %}a draft of the order sought
+
+
+
+
+ {% input_field type="checkbox" name="form35_dummy_requisition" value="option2" %}proof that the case is an undefended family law case
+
+
+
+
+ {% input_field type="checkbox" name="form35_dummy_requisition" value="option3" %}certificate of the registrar in Form F36
+
+
+
+
+ {% input_field type="checkbox" name="form35_dummy_requisition" value="option4" %}filing fee
+
+
+
+
+
Additional request:
+
+
+
+ {% input_field type="checkbox" name="form35_dummy_additional" value="option1" %}proof of service of the Notice of Family Claim or Counterclaim, as the case may be.
+
+
+
+
+ {% input_field type="checkbox" name="form35_dummy_additional" value="option2" %}a Child Support Affidavit in Form F37.
+
+
+
+
+ {% input_field type="checkbox" name="form35_dummy_additional" value="option3" %}an Affidavit in Form F38.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
FORM 38
+
+
Will you be swearing/affirming your affidavit together at the registry? Or will you be doing this separately?
+
+
+ {% input_field type="radio" name="form38_dummy_together" autocomplete="off" value="option1" %} Together
+
+
+ {% input_field type="radio" name="form38_dummy_together" autocomplete="off" value="option2" %} Separate
+
+
+
+
+
+
+
+
+
+
+{% endblock %}
\ No newline at end of file
diff --git a/edivorce/fixtures/Question.json b/edivorce/fixtures/Question.json
index a34ce230..f1097e0e 100644
--- a/edivorce/fixtures/Question.json
+++ b/edivorce/fixtures/Question.json
@@ -502,5 +502,29 @@
},
"model": "core.question",
"pk": "address_to_send_official_document_email_spouse"
+},
+{
+ "fields": {
+ "name": "Form 35 requisition dummy question",
+ "description": "DUMMY QUESTION for form 35 first question"
+ },
+ "model": "core.question",
+ "pk": "form35_dummy_requisition"
+},
+{
+ "fields": {
+ "name": "Form 35 additional dummy question",
+ "description": "DUMMY QUESTION for form 35 second question"
+ },
+ "model": "core.question",
+ "pk": "form35_dummy_additional"
+},
+{
+ "fields": {
+ "name": "Will you be swearing/affirming your affidavit together at the registry? Or will you be doing this separately?",
+ "description": "DUMMY QUESTION for form 38 first question"
+ },
+ "model": "core.question",
+ "pk": "form38_dummy_together"
}
]