Browse Source

Data persistence for the 'Your Children' question

pull/160/head
Benard Ebinu 8 years ago
parent
commit
be568c4806
8 changed files with 272 additions and 188 deletions
  1. +1
    -1
      edivorce/apps/core/static/css/main.css
  2. +5
    -0
      edivorce/apps/core/static/css/main.scss
  3. +6
    -0
      edivorce/apps/core/static/js/ajax.js
  4. +37
    -5
      edivorce/apps/core/static/js/main.js
  5. +11
    -6
      edivorce/apps/core/templates/partials/your_children_child.html
  6. +201
    -175
      edivorce/apps/core/templates/question/06_children.html
  7. +1
    -1
      edivorce/apps/core/utils/question_step_mapping.py
  8. +10
    -0
      edivorce/fixtures/Question.json

+ 1
- 1
edivorce/apps/core/static/css/main.css
File diff suppressed because it is too large
View File


+ 5
- 0
edivorce/apps/core/static/css/main.scss View File

@ -185,6 +185,11 @@ img {
@extend .table;
border-collapse: separate;
}
.list-builder-hide-column {
visibility: collapse;
}
.child-item-row {
height: 50px;
}


+ 6
- 0
edivorce/apps/core/static/js/ajax.js View File

@ -7,6 +7,12 @@ var ajaxOnChange = function () {
}
// show/hide additional information if needed
reveal(el);
var skipAjax = el.attr('data-skip_ajax');
if (skipAjax !== undefined && skipAjax === "true") {
return;
}
var question = el.prop('name');
var value = getValue(el, question);
var isValid = true;


+ 37
- 5
edivorce/apps/core/static/js/main.js View File

@ -172,8 +172,7 @@ $(function () {
clone_group_class: "child-disabled-group",
reveal_class: "child-item-row",
customAction: function(settings, newElement) {
// $('.'+ settings.reveal_class).removeClass('table-cell-active');
// newElement('tr').addClass('table-cell-active');
$('.children-questions').show();
// Want the second list row because that is before the newElement
// was appended.
@ -206,6 +205,15 @@ $(function () {
// If the user clicks on the row, then should populate the input fields below the table
// with the contents of the row.
newElement.on('click', populateChildInputFields);
},
customDeleteAction: function(settings, element) {
$('[type=radio]').prop('checked', false);
$('.children-input-block').each(function() {
resetChildrenInputBlock($(this), 'null');
});
$('.children-questions').hide();
deleteAddedTableRow(element);
$('#btn_save_child').trigger('click');
}
}
];
@ -224,6 +232,7 @@ $(function () {
};
var populateChildInputFields = function() {
$('.children-questions').show();
$('.child-item-row').removeClass('table-cell-active');
$(this).closest('tr').addClass('table-cell-active');
@ -245,6 +254,20 @@ $(function () {
};
$('.child-item-row').on('click', populateChildInputFields);
$('#btn_save_child').on('click', function() {
var childrenData = [];
// The hidden row is the first now so make sure to skip it.
$('#your_children_table').find('tbody:first').find('tr:gt(0)').each(function() {
var childData = {};
$(this).find('.child-field').each(function() {
childData[$(this).attr('data-target-form-field')] = $(this).text();
});
childrenData.push(childData);
});
var jsonChildrenData = JSON.stringify(childrenData);
ajaxCall($(this).prop('name'), jsonChildrenData);
});
$("#btn_add_reconciliation_periods").on('click', function () {
$('#reconciliation_period_fields').append($('#reconciliation_period_group').children().clone());
@ -473,7 +496,7 @@ var deleteAddedField = function(e){
field.find('input:text').first().triggerHandler('change');
};
var deleteAddedTableRow = function() {
var deleteAddedTableRow = function(element) {
// If the element being removed contained the sum attribute, cache the addend
// class and sum target id so that can remove the element then recalculate the
// total with the remaining elements.
@ -485,19 +508,28 @@ var deleteAddedTableRow = function() {
sumTargetId = sumTargetElement.data('sum_target_id');
}
$(this).closest('tr').remove();
element.closest('tr').remove();
if (sumClass && sumTargetId) {
sumFields('.' + sumClass, '#' + sumTargetId);
}
};
var registerTableRowAddRemoveHandlers = function(settings) {
var cleanUp = function() {
if (settings.hasOwnProperty('customDeleteAction')) {
settings.customDeleteAction(settings, $(this));
} else {
deleteAddedTableRow($(this));
}
};
$(settings.delete_button_selector).on('click', cleanUp);
$(settings.add_button_selector).on('click', function() {
var newRow = $('.' + settings.clone_group_class).clone();
newRow.show();
newRow.removeClass(settings.clone_group_class);
newRow.addClass(settings.reveal_class);
newRow.find(settings.delete_button_selector).on('click', deleteAddedTableRow);
newRow.find(settings.delete_button_selector).on('click', cleanUp);
newRow.find(settings.input_field_selector)
.on('change', ajaxOnChange)
.on('focus', function() {


+ 11
- 6
edivorce/apps/core/templates/partials/your_children_child.html View File

@ -2,27 +2,27 @@
<td class="table-bordered">
<div id="child_name_{{ div_id }}"
class="child-field"
data-target-form-field="child_name"></div>
data-target-form-field="child_name">{{ name }}</div>
</td>
<td class="table-bordered">
<div id="child_birth_date_{{ div_id }}"
class="child-field"
data-target-form-field="child_birth_date"></div>
data-target-form-field="child_birth_date">{{ birth_date }}</div>
</td>
<td class="table-bordered">
<div id="child_live_with_{{ div_id }}"
class="child-field"
data-target-form-field="child_live_with"></div>
data-target-form-field="child_live_with">{{ live_with }}</div>
</td>
<td class="table-bordered">
<div id="child_relationship_you_{{ div_id }}"
class="child-field"
data-target-form-field="child_relationship_to_you"></div>
data-target-form-field="child_relationship_to_you">{{ relationship_to_you }}</div>
</td>
<td class="table-bordered">
<div id="child_relationship_spouse_{{ div_id }}"
class="child-field"
data-target-form-field="child_relationship_to_spouse"></div>
data-target-form-field="child_relationship_to_spouse">{{ relationship_to_spouse }}</div>
</td>
{% if not exclude_delete_button %}
<td class="fact-sheet-button">
@ -30,4 +30,9 @@
<input type="button" class="btn btn-danger btn-delete-child form-control" tabindex="-1" value="Delete" />
</div>
</td>
{% endif %}
{% endif %}
<td class="list-builder-hide-column">
<div id="child_custody_{{ div_id }}"
class="child-field"
data-target-form-field="child_custody">{{ custody }}</div>
</td>

+ 201
- 175
edivorce/apps/core/templates/question/06_children.html View File

@ -24,20 +24,19 @@
<th class="table-bordered">Relationship to Claimant 1</th>
<th class="table-bordered">Relationship to Claimant 2</th>
<th></th>
<th class="list-builder-hide-column"></th>
</tr>
</thead>
<tbody>
<tr class="child-item-row" data-counter="0">
{% include "partials/your_children_child.html" with exclude_delete_button=True div_id="0" counter="0" %}
</tr>
<tr class="child-disabled-group" data-counter="0" hidden>
{% include "partials/your_children_child.html" with div_id="hidden" %}
</tr>
{% if list_of_children and list_of_children != '[]' %}
{% multiple_values_to_list source=list_of_children as children %}
{% for name, birth_date, live_with, custody, relationship_to_you, relationship_to_spouse in children %}
{% if claimant_children and claimant_children != '[]' %}
{% multiple_values_to_list source=claimant_children as children %}
{% for child in children %}
<tr class="child-item-row" data-counter="{{ forloop.counter }}">
{% include "partials/your_children_child.html" with div_id=forloop.counter counter=forloop.counter %}
{{ child.name }}
{% include "partials/your_children_child.html" with name=child.child_name birth_date=child.child_birth_date live_with=child.child_live_with custody=child.child_custody live_with=child.child_live_with relationship_to_you=child.child_relationship_to_you relationship_to_spouse=child.child_relationship_to_spouse div_id=forloop.counter counter=forloop.counter %}
</tr>
{% endfor %}
{% endif %}
@ -45,192 +44,219 @@
</table>
</div>
<div>
<p>
Please answer the questions below <strong>for each</strong> of your children.
Their name will be added to the list above.
</p>
</div>
<div class="children-questions" hidden>
<div>
<p>
Please answer the questions below <strong>for each</strong> of your children.
Their name will be added to the list above.
</p>
</div>
<div class="question-well">
<h3>What is your child's name?</h3>
<div>{% input_field type="text" name="child_name" class="form-block intput-wide responsive-textbox children-input-block" placeholder="First, Middle, Last Name" data_mirror="true" data_mirror_target="#child_name_0" %}</div>
</div>
<div class="question-well">
<h3>What is your child's name?</h3>
<div>{% input_field type="text" name="child_name" class="form-block intput-wide responsive-textbox children-input-block" placeholder="First, Middle, Last Name" data_mirror="true" data_mirror_target="#child_name_0" data_skip_ajax="true" %}</div>
</div>
<div class="question-well">
<h3>What is your child's date of birth?</h3>
<p>
<div class="question-well">
<h3>What is your child's date of birth?</h3>
<p>
<span class="input-group date date-picker-group">
{% input_field type="text" name="child_birth_date" class="date-picker form-control children-input-block" id="childs_birth_date" placeholder="DD/MM/YYYY" data_mirror="true" data_mirror_target="#child_birth_date_0" %}
<span class="input-group-addon" >
{% input_field type="text" name="child_birth_date" class="date-picker form-control children-input-block" id="childs_birth_date" placeholder="DD/MM/YYYY" data_mirror="true" data_mirror_target="#child_birth_date_0" data_skip_ajax="true" %}
<span class="input-group-addon">
<i class="fa fa-calendar circle"></i>
</span>
</span>
</p>
</div>
</p>
</div>
<div class="question-well">
<h3>Where/whom does this child currently live with?</h3>
<p>Please select one</p>
<div class="radio">
<label class="tight-spacing">
{% input_field type="radio" class="radio-with-other children-input-block" name="child_live_with" value="Lives with you" data_target_id="other_child_details" data_reveal_target="false" data_mirror="true" data_mirror_target="#child_live_with_0" %}
{% if name_you %}{{ name_you }}{% else %}you{% endif %}
</label>
<p>Child lives primarily (more than 60%) with this parent</p>
</div>
<div class="radio">
<label class="tight-spacing">
{% input_field type="radio" class="radio-with-other children-input-block" name="child_live_with" value="Lives with spouse" data_target_id="other_child_details" data_reveal_target="false" data_mirror="true" data_mirror_target="#child_live_with_0" %}
{% if name_spouse %}{{ name_spouse }}{% else %}your spouse{% endif %}
</label>
<p>Child lives primarily (more than 60%) with this parent</p>
</div>
<div class="radio">
<label class="tight-spacing">
{% input_field type="radio" class="radio-with-other children-input-block" name="child_live_with" value="Lives with both" data_target_id="other_child_details" data_reveal_target="false" data_mirror="true" data_mirror_target="#child_live_with_0" %}
Both/Shared
{% if name_you %}{{ name_you }}{% else %}you{% endif %} and
{% if name_spouse %}{{ name_spouse }}{% else %}your spouse{% endif %}
</label>
<p>The child live with both parents more or less equally (between 40-60% of the time with each parent)</p>
</div>
<div class="question-well">
<h3>Where/whom does this child currently live with?</h3>
<p>Please select one</p>
<div class="radio">
<label class="tight-spacing">
{% input_field type="radio" class="radio-with-other children-input-block" name="child_live_with" value="Lives with you" data_target_id="other_child_details" data_reveal_target="false" data_mirror="true" data_mirror_target="#child_live_with_0" data_skip_ajax="true" %}
{% if name_you %}{{ name_you }}{% else %}You{% endif %}
</label>
<p>Child lives primarily (more than 60%) with this parent</p>
</div>
<div class="radio">
<label class="tight-spacing">
{% input_field type="radio" class="radio-with-other children-input-block" name="child_live_with" value="Lives with spouse" data_target_id="other_child_details" data_reveal_target="false" data_mirror="true" data_mirror_target="#child_live_with_0" data_skip_ajax="true" %}
{% if name_spouse %}{{ name_spouse }}{% else %}Your spouse{% endif %}
</label>
<p>Child lives primarily (more than 60%) with this parent</p>
</div>
<div class="radio">
<label class="tight-spacing">
{% input_field type="radio" class="radio-with-other children-input-block" name="child_live_with" value="Lives with both" data_target_id="other_child_details" data_reveal_target="false" data_mirror="true" data_mirror_target="#child_live_with_0" data_skip_ajax="true" %}
Both/Shared
{% if name_you %}{{ name_you }}{% else %}you{% endif %} and
{% if name_spouse %}{{ name_spouse }}{% else %}your spouse{% endif %}
</label>
<p>The child live with both parents more or less equally (between 40-60% of the time with each
parent)</p>
</div>
<div class="radio">
<label>
{% input_field type="radio" class="radio-with-other radio-with-textbox children-input-block" name="child_live_with" value="Other" data_target_id="other_child_details" data_reveal_target="true" data_mirror="true" data_mirror_target="#child_live_with_0" %}
Other
{% input_field type="textarea" class="response-textbox other-textbox input-inline children-input-block" name="child_live_with_other_details" id="other_child_details" maxlength="500" rows="3" tabindex="-1" hidden="" %}
</label>
</div>
<div class="radio">
<label>
{% input_field type="radio" class="radio-with-other radio-with-textbox children-input-block" name="child_live_with" value="Other" data_target_id="other_child_details" data_reveal_target="true" data_mirror="true" data_mirror_target="#child_live_with_0" data_skip_ajax="true" %}
Other
{% input_field type="textarea" class="response-textbox other-textbox input-inline children-input-block" name="child_live_with_other_details" id="other_child_details" maxlength="500" rows="3" tabindex="-1" hidden="" data_skip_ajax="true" %}
</label>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapseChildLivingOptions" aria-controls="collapseChildLivingOptions">
<div>
Which option applies if my child is living away from home attending school?
</div>
</div>
<div class="collapse" id="collapseChildLivingOptions">
<div>
<p>
If the child is a dependent living away from home much of the year to attend school, select
the parent with whom the child primarily lives when he/she returns home.
</p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false"
data-target="#collapseChildLivingOptions" aria-controls="collapseChildLivingOptions">
<div>
Which option applies if my child is living away from home attending school?
</div>
</div>
<div class="collapse" id="collapseChildLivingOptions">
<div>
<p>
If the child is a dependent living away from home much of the year to attend school, select
the parent with whom the child primarily lives when he/she returns home.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="question-well">
<h3>The type of parenting arrangement you have can affect the way you calculate child support under the
<a href="http://www.justice.gc.ca/eng/rp-pr/fl-lf/child-enfant/guide/step6-etap6.html" target="_blank">
Federal Guidelines.
</a>
</h3>
<h3>
What is your current parenting arrangement for child (insert name previously entered)?
</h3>
<div class="radio">
<label class="tight-spacing">
{% input_field type="radio" class="radio-with-other children-input-block" name="child_custody" value="Sole custody"%}
Sole custody
</label>
<p>
Your child spends more than 60 percent of their time with one of you over the course of a year
</p>
</div>
<div class="radio">
<label class="tight-spacing">
{% input_field type="radio" class="radio-with-other children-input-block" name="child_custody" value="Split"%}
Split
</label>
<p>
You split custody of your children if:
<ul>
<li>you have more than one child; and</li>
<li>you each have sole custody of at least one of the children</li>
</ul>
</p>
</div>
<div class="radio">
<label class="tight-spacing">
{% input_field type="radio" class="radio-with-other children-input-block" name="child_custody" value="Shared/Joint"%}
Shared/Joint
</label>
<p>
You share custody of your children if they spend at least 40 percent of the time with each of you in a year
</p>
</div>
</div>
<div class="question-well">
<h3>The type of parenting arrangement you have can affect the way you calculate child support under the
<a href="http://www.justice.gc.ca/eng/rp-pr/fl-lf/child-enfant/guide/step6-etap6.html" target="_blank">
Federal Guidelines.
</a>
</h3>
<h3>
What is your current parenting arrangement for child (insert name previously entered)?
</h3>
<div class="radio">
<label class="tight-spacing">
{% input_field type="radio" class="radio-with-other children-input-block" name="child_custody" value="Sole custody" data_mirror="true" data_mirror_target="#child_custody_0" data_skip_ajax="true" %}
Sole custody
</label>
<p>
Your child spends more than 60 percent of their time with one of you over the course of a year
</p>
</div>
<div class="radio">
<label class="tight-spacing">
{% input_field type="radio" class="radio-with-other children-input-block" name="child_custody" value="Split" data_mirror="true" data_mirror_target="#child_custody_0" data_skip_ajax="true" %}
Split
</label>
<p>
You split custody of your children if:
<ul>
<li>you have more than one child; and</li>
<li>you each have sole custody of at least one of the children</li>
</ul>
</p>
</div>
<div class="radio">
<label class="tight-spacing">
{% input_field type="radio" class="radio-with-other children-input-block" name="child_custody" value="Shared/Joint" data_mirror="true" data_mirror_target="#child_custody_0" data_skip_ajax="true" %}
Shared/Joint
</label>
<p>
You share custody of your children if they spend at least 40 percent of the time with each of you in
a year
</p>
</div>
</div>
<div class="question-well">
<h3>What is your relationship to this child?</h3>
<div class="radio">
<label>{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_you" value="Natural child" data_mirror="true" data_mirror_target="#child_relationship_you_0"%}Natural child</label>
</div>
<div class="radio">
<label>{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_you" value="Step child" data_mirror="true" data_mirror_target="#child_relationship_you_0"%}Step child</label>
</div>
<div class="radio">
<label class="tight-spacing">{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_you" value="Adopted child" data_mirror="true" data_mirror_target="#child_relationship_you_0"%}Adopted child</label>
<p>
Once a child is legally adopted, he or she becomes the child of the adoptive parent(s) for all purposes.
</p>
</div>
<div class="question-well">
<h3>What is your relationship to this child?</h3>
<div class="radio">
<label>{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_you" value="Natural child" data_mirror="true" data_mirror_target="#child_relationship_you_0" data_skip_ajax="true" %}Natural
child</label>
</div>
<div class="radio">
<label>{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_you" value="Step child" data_mirror="true" data_mirror_target="#child_relationship_you_0" data_skip_ajax="true" %}Step
child</label>
</div>
<div class="radio">
<label class="tight-spacing">{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_you" value="Adopted child" data_mirror="true" data_mirror_target="#child_relationship_you_0" data_skip_ajax="true" %}Adopted
child</label>
<p>
Once a child is legally adopted, he or she becomes the child of the adoptive parent(s) for all
purposes.
</p>
</div>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false" data-target="#collapseParentRights" aria-controls="collapseParentRights">
<div>
What are a step-parents' rights and responsibilities?
</div>
</div>
<div class="collapse" id="collapseParentRights">
<div>
<p>
If you have stepchildren and you separate from their parent, you may want to continue your relationship
with those children. You can try to negotiate an arrangement with the child's parent for you to have
regular contact with the child. The only thing you and the other parent can consider when making these
decisions is the best interests of the child. You can put these arrangements into an agreement that the
two of you write down and sign.
</p>
<p>As a step-parent, you may be responsible to pay child support if:</p>
<ul>
<li>you and the child's parent are or were married or lived common-law for at least two years, and</li>
<li>you also lived with the child.</li>
</ul>
<p>You aren't responsible to pay child support for stepchildren unless</p>
<ul>
<li>
you contributed to the child's support for at least one year during your relationship with the
child's parent, and
</li>
<li>
the application for support is made within a year of the last time you contributed to the child's support.
</li>
</ul>
<p>
For more information on
<a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/step_parents_rights.php" target="_blank">step-parents' rights and responsibilities</a>
please refer to the Family Law of B.C. website.
</p>
<div class="collapse-trigger collapsed" data-toggle="collapse" aria-expanded="false"
data-target="#collapseParentRights" aria-controls="collapseParentRights">
<div>
What are a step-parents' rights and responsibilities?
</div>
</div>
<div class="collapse" id="collapseParentRights">
<div>
<p>
If you have stepchildren and you separate from their parent, you may want to continue your
relationship
with those children. You can try to negotiate an arrangement with the child's parent for you to
have
regular contact with the child. The only thing you and the other parent can consider when making
these
decisions is the best interests of the child. You can put these arrangements into an agreement
that the
two of you write down and sign.
</p>
<p>As a step-parent, you may be responsible to pay child support if:</p>
<ul>
<li>you and the child's parent are or were married or lived common-law for at least two years,
and
</li>
<li>you also lived with the child.</li>
</ul>
<p>You aren't responsible to pay child support for stepchildren unless</p>
<ul>
<li>
you contributed to the child's support for at least one year during your relationship with
the
child's parent, and
</li>
<li>
the application for support is made within a year of the last time you contributed to the
child's support.
</li>
</ul>
<p>
For more information on
<a href="http://www.familylaw.lss.bc.ca/resources/fact_sheets/step_parents_rights.php"
target="_blank">step-parents' rights and responsibilities</a>
please refer to the Family Law of B.C. website.
</p>
</div>
</div>
</div>
</div>
</div>
<div class="question-well">
<h3>What is your spouse's relationship to this child?</h3>
<div class="radio">
<label>{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_spouse" value="Natural child" data_mirror="true" data_mirror_target="#child_relationship_spouse_0" %}Natural child</label>
<div class="question-well">
<h3>What is your spouse's relationship to this child?</h3>
<div class="radio">
<label>{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_spouse" value="Natural child" data_mirror="true" data_mirror_target="#child_relationship_spouse_0" data_skip_ajax="true" %}Natural
child</label>
</div>
<div class="radio">
<label>{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_spouse" value="Step child" data_mirror="true" data_mirror_target="#child_relationship_spouse_0" data_skip_ajax="true" %}Step
child</label>
</div>
<div class="radio">
<label class="tight-spacing">{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_spouse" value="Adopted child" data_mirror="true" data_mirror_target="#child_relationship_spouse_0" data_skip_ajax="true" %}Adopted
child</label>
<p>
Once a child is legally adopted, he or she becomes the child of the adoptive parent(s) for all
purposes.
</p>
</div>
</div>
<div class="radio">
<label>{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_spouse" value="Step child" data_mirror="true" data_mirror_target="#child_relationship_spouse_0"%}Step child</label>
</div>
<div class="radio">
<label class="tight-spacing">{% input_field type="radio" class="radio-with-other children-input-block" name="child_relationship_to_spouse" value="Adopted child" data_mirror="true" data_mirror_target="#child_relationship_spouse_0"%}Adopted child</label>
<p>
Once a child is legally adopted, he or she becomes the child of the adoptive parent(s) for all purposes.
</p>
</div>
</div>
<span class="form-group">
<input type="button" id="btn_save_child" class="btn btn-success" name="claimant_children" value="Save Child"/>
<input type="button" id="btn_add_child" class="btn btn-success" value="Add Child"/>
</span>
</div>
<div id="questions_modal" class="modal fade" tabindex="-1" role="dialog">
<div class="modal-dialog" role="document">


+ 1
- 1
edivorce/apps/core/utils/question_step_mapping.py View File

@ -33,7 +33,7 @@ question_step_mapping = {
'marital_status_before_spouse',
'when_were_you_live_married_like'],
'your_separation': ['no_reconciliation_possible', 'no_collusion'],
'your_children': [],
'your_children': ['claimant_children'],
'spousal_support': ['spouse_support_details', 'spouse_support_act'],
'property_and_debt': ['deal_with_property_debt',
'how_to_divide_property_debt',


+ 10
- 0
edivorce/fixtures/Question.json View File

@ -796,5 +796,15 @@
},
"pk": "number_children_over_19",
"model": "core.question"
},
{
"fields": {
"name": "Your children",
"description": "For Step 6, Your children",
"summary_order": 0,
"required": "Required"
},
"model": "core.question",
"pk": "claimant_children"
}
]

Loading…
Cancel
Save