{% 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 }}.


{% formfield player.tax_q1 label='How much gross income did you earn in Part 1? ' %}

{% formfield player.tax_q2 label='How much are you paying in taxes? ' %}

{% formfield player.tax_q3 label='What share of your income are you paying in taxes? (%)' %}

{% formfield player.tax_q4 label='How much taxes is someone earning 40,000 ECU paying? ' %}

{% next_button %}

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