{% trans "Loss of Pay" %} |
{{loss_of_pay|floatformat:2|currency_symbol_position}}
|
{% for deduction in basic_pay_deductions %}
{{deduction.title}} |
{{deduction.amount|floatformat:2|currency_symbol_position}}
|
{% endfor %}
{% for deduction in gross_pay_deductions %}
{{deduction.title}} |
{{deduction.amount|floatformat:2|currency_symbol_position}}
|
{% endfor %}
{% for deduction in pretax_deductions %}
{{deduction.title}} |
{{deduction.amount|floatformat:2|currency_symbol_position}}
|
{% endfor %}
{% for deduction in post_tax_deductions %}
{{deduction.title}} |
{{deduction.amount|floatformat:2|currency_symbol_position}}
|
{% endfor %}
{% trans "Federal Tax" %} |
{{federal_tax|floatformat:2|currency_symbol_position}}
|
{% for deduction in tax_deductions %}
{{deduction.title}} |
{{deduction.amount|floatformat:2|currency_symbol_position}}
|
{% endfor %}
{% for deduction in net_deductions %}
{{deduction.title}} |
{{deduction.amount|floatformat:2|currency_symbol_position}}
|
{% endfor %}