{% extends "global/Page.html" %} {% load otree %} {% block title %} Tax System {% endblock %} {% block content %}

Your gross income is subject to the following tax system:


{% if treatment == 1 %}

{% elif treatment > 1 %}

{% endif %} {% if treatment > 1 %}

* MTR stands for Marginal Tax Rate
(the % tax on each unit of gross income within the given band).

{% elif treatment == 1 %}

* ATR stands for Average Tax Rate
(the % tax on all your gross income).

{% endif %}

Your gross income is {{ income }} ECU.
Therefore, your tax due is {{ taxdue }}.


{% next_button %}

{% include Constants.instructions_template %}
{% endblock %}