Browse Source

DIV-728: Hiding sub question based on dependency on answer of question on another page

pull/160/head
Benard Ebinu 7 years ago
parent
commit
725478faee
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      edivorce/apps/core/templates/question/06_children_payor_medical.html

+ 6
- 1
edivorce/apps/core/templates/question/06_children_payor_medical.html View File

@ -177,7 +177,12 @@
</h3>
<div class="radio">
<label>
{% input_field type="radio" class="radio-with-other radio_with_textbox" name="child_support_in_order" value="YES" data_target_id="does_amount_match" data_reveal_target="true" %}
{% if how_will_calculate_income != 'entered agreement' %}
{% input_field type="radio" class="radio-with-other radio_with_textbox" name="child_support_in_order" value="YES" data_target_id="does_amount_match" data_reveal_target="true" %}
{% else %}
{% input_field type="radio" class="radio-with-other radio_with_textbox" name="child_support_in_order" value="YES" %}
{% endif %}
<div class="dollar-prefix">
{% money_input_field name="order_monthly_child_support_amount" class="money form-block response-textbox children-input-block" data_mirror="true" data_mirror_target="#child_support_amount_label" %}
</div>


Loading…
Cancel
Save