{% load i18n %} {% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% if not filing_status.use_py %}
{% trans "Tax Rate" %}
{% trans "Min. Income" %}
{% trans "Max. Income" %}
{% if perms.payroll.change_taxbracket %}
{% endif %} {% if perms.payroll.delete_taxbracket %}
{% endif %}
{% for tax_bracket in tax_brackets %}
{{ tax_bracket.tax_rate|stringformat:".2f" }}%
{% if position == "prefix" %}
{{currency}} {{ tax_bracket.min_income|stringformat:".2f" }}
{% else %}
{{ tax_bracket.min_income|stringformat:".2f" }} {{currency}}
{% endif %} {% if position == "prefix" %}
{{currency}} {{ tax_bracket.get_display_max_income|stringformat:".2f" }}
{% else %}
{{ tax_bracket.get_display_max_income|stringformat:".2f" }} {{currency}}
{% endif %} {% if perms.payroll.change_taxbracket %} {% endif %} {% if perms.payroll.delete_taxbracket %}
{% endif %}
{% endfor %}
{% else %} {% endif %}