{% trans "Loss of Pay" %} |
{% if position == "prefix" %}
{{currency}} {{loss_of_pay|floatformat:2}}
|
{% else %}
{{loss_of_pay|floatformat:2}} {{currency}}
|
{% endif %}
{% for deduction in basic_pay_deductions %}
{{deduction.title}} |
{% if position == "prefix" %}
{{currency}} {{deduction.amount|floatformat:2}}
|
{% else %}
|
{{deduction.amount|floatformat:2}} {{currency}}
|
{% endif %}
{% endfor %} {% for deduction in gross_pay_deductions %}
{{deduction.title}} |
{% if position == "prefix" %}
{{currency}} {{deduction.amount|floatformat:2}}
|
{% else %}
{{deduction.amount|floatformat:2}} {{currency}}
|
{% endif %}
{% endfor %} {% for deduction in pretax_deductions %}
{{deduction.title}} |
{% if position == "prefix" %}
{{currency}} {{deduction.amount|floatformat:2}}
|
{% else %}
{{deduction.amount|floatformat:2}} {{currency}}
|
{% endif %}
{% endfor %} {% for deduction in post_tax_deductions %}
{{deduction.title}} |
{% if position == "prefix" %}
{{currency}} {{deduction.amount|floatformat:2}}
|
{% else %}
{{deduction.amount|floatformat:2}} {{currency}}
|
{% endif %}
{% endfor %}
{% trans "Federal Tax" %} |
{% if position == "prefix" %}
{{currency}} {{federal_tax|floatformat:2}}
|
{% else %}
{{federal_tax|floatformat:2}} {{currency}}
|
{% endif %}
{% for deduction in tax_deductions %}
{{deduction.title}} |
{% if position == "prefix" %}
{{currency}} {{deduction.amount|floatformat:2}}
|
{% else %}
{{deduction.amount|floatformat:2}} {{currency}}
|
{% endif %}
{% endfor %} {% for deduction in net_deductions %}
{{deduction.title}} |
{% if position == "prefix" %}
{{currency}} {{deduction.amount|floatformat:2}}
|
{% else %}
{{deduction.amount|floatformat:2}} {{currency}}
|
{% endif %}
{% endfor %}