{% extends 'base_admin.html.twig' %} {% block title %}Impot Tax Rates{% endblock %} {% block body %}

Impot Tax Rates

{% for year in years %} {% endfor %}

{% for year in years %} {% for classification in classifications %} {% endfor %} {% for impot_tax_rate in impot_tax_rates %} {% if year.year == impot_tax_rate.year %} {% for classification in classifications %} {% endfor %} {% else %} {% endif %} {% endfor %}
Year Salary Lower Bound Salary Upper Bound{{ classification.impotClassification }}
{{ impot_tax_rate.year }} {{ impot_tax_rate.salaryLowerBound|number_format(0) }} {{ impot_tax_rate.salaryUpperBound|number_format(0) }} {% if payrollService.impotTaxRate(impot_tax_rate.year,classification.impotClassification ,impot_tax_rate.salaryLowerBound) != "NA" %} {{ (payrollService.impotTaxRate(impot_tax_rate.year,classification.impotClassification ,impot_tax_rate.salaryLowerBound)*100 )|number_format(3) }}% {% else %} N/A {% endif %}
{% endfor %} New {% endblock %} {% block datatable %} {% endblock datatable %}