Browse Source

DIV-692: Fact Sheet B automatically calculated guidelines amounts shown as currency with dollar prefix

pull/160/head
Benard Ebinu 8 years ago
parent
commit
8b8281aa45
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      edivorce/apps/core/templates/question/06_children_facts.html

+ 6
- 2
edivorce/apps/core/templates/question/06_children_facts.html View File

@ -378,7 +378,9 @@
Difference between the Guidelines table amount of the claimant and the Guidelines table amount of the respondent Difference between the Guidelines table amount of the claimant and the Guidelines table amount of the respondent
</td> </td>
<td class="fact-sheet-answer" colspan="2" readonly> <td class="fact-sheet-answer" colspan="2" readonly>
{% input_field type="number" name="difference_between_claimants" value="" class="fact-sheet-input" readonly="" %}
<div class="dollar-prefix">
{% money_input_field name="difference_between_claimants" value="" class="money fact-sheet-input" readonly="" %}
</div>
</td> </td>
</tr> </tr>
<tr> <tr>
@ -416,7 +418,9 @@
Amount of child support to be paid per month by {% if child_support_payor %}{{ child_support_payor|lower }}{% else %}the payor{% endif %} Amount of child support to be paid per month by {% if child_support_payor %}{{ child_support_payor|lower }}{% else %}the payor{% endif %}
</td> </td>
<td class="fact-sheet-answer" colspan="2" readonly> <td class="fact-sheet-answer" colspan="2" readonly>
{% input_field type="number" name="difference_between_claimants" value="" class="fact-sheet-input" readonly="" %}
<div class="dollar-prefix">
{% money_input_field name="difference_between_claimants" value="" class="money fact-sheet-input" readonly="" %}
</div>
</td> </td>
</tr> </tr>
</tbody> </tbody>


Loading…
Cancel
Save