ContributeTax.html
{% extends "global/Page.html" %}

{% block title %}Contribute{% endblock %}
{% block content %}
    <p>
        YOU HAVE BEEN TAXED!
    </p>
    <p>
        Welcome to the contribution page! You have been randomly assigned another participant to play this round with.
        In this round, you and the other player have been taxed {{ Constants.tax }}. This tax has been directly deposited into the public
        account.
    </p>
    <p>
        Please make your decision on how much of your endowment to allocate to each account. The other participant
        paired with you will also be making a decision of how much to contribute to the public account.
    </p>

    <p>
        Your Endowment is: {{ player.endowment }}
        The other subject's endowment is: {{ player.other_endowment }}
        The current value of the public account reflects the taxes collected and is {{ Constants.tax_profit }}.
    </p>

    {% formfields %}


    {% next_button %}

    {% include Constants.instructions_template %}

{% endblock %}