{% load i18n static %}
{% trans 'Deduction' %}
{% trans 'Employee Contribution' %}
{% trans 'Employer Contribution' %}
{% for deduction in contribution_deductions %}
{{ deduction.title }}
{{ currency }} {{ deduction.employee_contribution|floatformat:2 }}
{{ currency }} {{ deduction.employer_contribution|floatformat:2 }}
{% endfor %} {% if not contribution_deductions %}
{% endif %}