Browse Source

DIV-627: Interaction in place for viewing children and editing a single child

pull/160/head
Benard Ebinu 8 years ago
parent
commit
50bce5973e
6 changed files with 239 additions and 219 deletions
  1. +1
    -1
      edivorce/apps/core/static/css/main.css
  2. +3
    -3
      edivorce/apps/core/static/css/main.css.map
  3. +1
    -1
      edivorce/apps/core/static/css/main.scss
  4. +24
    -7
      edivorce/apps/core/static/js/main.js
  5. +9
    -1
      edivorce/apps/core/templates/partials/your_children_child.html
  6. +201
    -206
      edivorce/apps/core/templates/question/06_children_your_children.html

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


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


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

@ -207,7 +207,7 @@ input[type=number]::-webkit-outer-spin-button {
}
.list-builder-hide-column {
visibility: collapse;
display: none;
}
.child-item-row {


+ 24
- 7
edivorce/apps/core/static/js/main.js View File

@ -235,7 +235,7 @@ $(function () {
reveal_class: "income-others-item-row"
},
{
table_selector: "#your_children_table",
table_selector: "#claimant_children",
add_button_selector: "#btn_add_child",
delete_button_selector: ".btn-delete-child",
input_field_selector: ".child-field",
@ -275,6 +275,7 @@ $(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);
$('.children-list').hide();
},
customDeleteAction: function(settings, element) {
$('[type=radio]').prop('checked', false);
@ -303,10 +304,10 @@ $(function () {
var populateChildInputFields = function() {
$('.children-questions').show();
$('.child-item-row').removeClass('table-cell-active');
$(this).closest('tr').addClass('table-cell-active');
$('.children-list').hide();
$('[type=radio]').prop('checked', false);
var activeChildRow = $(this).attr('data-counter');
$(this).find('.child-field').each(function() {
var fieldName = $(this).attr('data-target-form-field');
@ -328,10 +329,14 @@ $(function () {
};
$('.child-item-row').on('click', populateChildInputFields);
$('#btn_save_child').on('click', function() {
$('#btn_save_child').on('click', function(e) {
e.preventDefault();
$('.children-questions').hide();
$('.children-list').show();
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() {
$('#claimant_children').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();
@ -630,7 +635,20 @@ var deleteAddedTableRow = function(element) {
tableRows.each(function() {
var item = {};
$(this).find(saveSelector).each(function() {
item[$(this).prop('name')] = $(this).val();
var fieldKey = $(this).prop('name');
// For some tables, the contents of the tables cells are div instead of input fields.
// In that case, check if the data-target-form-field attribute is set, that will contain
// the field names to be saved.
if (fieldKey === undefined) {
fieldKey = $(this).attr('data-target-form-field')
}
var fieldValue = $(this).val();
if ($(this).is('div')) {
fieldValue = $(this).text();
}
item[fieldKey] = fieldValue;
});
payload.push(item);
});
@ -712,7 +730,6 @@ var date_picker = function (selector, showOnFocus) {
}
$(selector).datepicker({
format: "M d, yyyy",
// format: "dd/mm/yyyy",
startDate: startDate,
endDate: endDate,
autoclose: true,


+ 9
- 1
edivorce/apps/core/templates/partials/your_children_child.html View File

@ -2,42 +2,50 @@
<td class="table-bordered">
<div id="child_name_{{ div_id }}"
class="child-field"
data-save_select=".child-field"
data-target-form-field="child_name">{{ name }}</div>
</td>
<td class="table-bordered">
<div id="child_birth_date_{{ div_id }}"
class="child-field"
data-save_select=".child-field"
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-save_select=".child-field"
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-save_select=".child-field"
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-save_select=".child-field"
data-target-form-field="child_relationship_to_spouse">{{ relationship_to_spouse }}</div>
</td>
{% if not exclude_delete_button %}
<td class="fact-sheet-button">
<div class="form-group">
<input type="button" class="btn btn-danger btn-delete-child form-control" tabindex="-1" value="Delete" />
<input type="button" class="btn btn-danger btn-delete-child form-control" tabindex="-1" value="X" />
<input type="button" class="btn btn-default btn-edit-child form-control" tabindex="-1" value="E" />
</div>
</td>
{% endif %}
<td class="list-builder-hide-column">
<div id="child_custody_{{ div_id }}"
class="child-field"
data-save_select=".child-field"
data-target-form-field="child_custody">{{ custody }}</div>
</td>
<td class="list-builder-hide-column">
<div id="child_live_with_other_details_{{ div_id }}"
class="child-field"
data-save_select=".child-field"
data-target-form-field="child_live_with_other_details">{{ other_details }}</div>
</td>

+ 201
- 206
edivorce/apps/core/templates/question/06_children_your_children.html View File

@ -10,16 +10,13 @@
<h1>
<small>Step {% step_order step="children" %}:</small>Your Children
<span class="form-group">
<input type="button" id="btn_add_child" class="btn btn-success" value="Add Child"/>
</span>
</h1>
<div class="question-well">
<table id="your_children_table" class="list-builder">
<div class="question-well children-list">
<table id="claimant_children" class="list-builder">
<thead>
<tr class="list-builder-header">
<th class="table-bordered">Child's Name</th>
<th class="table-bordered">Birthdate</th>
<th class="table-bordered">Birth date</th>
<th class="table-bordered">Child now living with</th>
<th class="table-bordered">Relationship to Claimant 1</th>
<th class="table-bordered">Relationship to Claimant 2</th>
@ -28,235 +25,233 @@
</tr>
</thead>
<tbody>
<tr class="child-disabled-group" data-counter="0" hidden>
{% include "partials/your_children_child.html" with div_id="hidden" %}
<tr class="child-disabled-group" data-counter="0" hidden>
{% include "partials/your_children_child.html" with div_id="hidden" %}
</tr>
{% 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 }}">
{{ 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 other_details=child.child_live_with_other_details div_id=forloop.counter counter=forloop.counter %}
</tr>
{% 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 }}">
{{ 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 other_details=child.child_live_with_other_details div_id=forloop.counter counter=forloop.counter %}
</tr>
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
</tbody>
</table>
<div class="form-button">
<input type="button" id="btn_add_child" class="btn btn-success" value="Add Child"/>
</div>
</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="children-questions" hidden>
<div class="question-well">
<h3>What is your child's name?</h3>
<p>Enter full name</p>
{% input_field type="text" name="child_name" class="form-block input-wide response-textbox children-input-block" placeholder="First, Middle, Last Name" data_mirror="true" data_mirror_target="#child_name_0" data_skip_ajax="true" %}
</div>
<div class="question-well">
<h3>What is your child's name?</h3>
<p>Enter full name</p>
{% input_field type="text" name="child_name" class="form-block input-wide response-textbox children-input-block" placeholder="First, Middle, Last Name" data_mirror="true" data_mirror_target="#child_name_0" data_skip_ajax="true" %}
</div>
<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="MMM D, 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>
<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="MMM D, 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>
</p>
</div>
</span>
</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="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" 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_mirror="true" data_mirror_target="#child_live_with_other_details_0" data_skip_ajax="true" %}
</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_mirror="true" data_mirror_target="#child_live_with_other_details_0" 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 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 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 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 class="question-well">
<h3>
What is your current parenting arrangement for child (insert name previously entered)?
</h3>
<p>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>
<div class="question-well">
<h3>
What is your current parenting arrangement for child (insert name previously entered)?
</h3>
<p>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>
</p>
<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 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" 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 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>
</div>
<div class="collapse" id="collapseParentRights">
<div>
<p>
You split custody of your children if:
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 have more than one child; and</li>
<li>you each have sole custody of at least one of the children</li>
<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>
</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
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 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>
</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" data_skip_ajax="true" %}Natural
child</label>
</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" 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 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>
<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>
<span class="form-buttons clearfix">
<a class="btn btn-primary" href="#" id="btn_save_child" name="claimant_children">
<i class="fa fa-floppy-o"></i>&nbsp Save Child
</a>
</span>
</div>
<div id="questions_modal" class="modal" tabindex="-1" role="dialog">


Loading…
Cancel
Save