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

{% trans "No records available." %}

{% endif %}