{{ block title }}
Euro Bonds Game
{{ endblock }}
{{ block content }}
{{ if defaulted_this_round == 1 }}
{{ if default_limit_reached == 1 }}
The government's debt now exceeds the total income of the 5 investors. The government is insolvent and must default on existing debt.
{{ else }}
The government did not manage to sell enough bonds to cover last period's debt. The state has defaulted.
{{ endif }}
Your investment of {{ player_sum_bids }} bonds with a value of {{ player_invested }}EC has been lost.
Your total gain in this round is : {{ player_sum_earned }} EC.
Your income in the next period is reduced by 30%: {{ player_next_income }} EC.
A haircut of 30% is applied to debt levels.
The debt to be financed in the next period is: {{ government_next_debt }} EC.
{{ else }}
The government has successfully sold enough bonds to cover its debt.
You have purchased {{ player_sum_purchased }} bonds at the prices in the table below.
Your total gain in this round is : {{ player_sum_earned }} EC.
The debt to be financed in the next period is: {{ government_next_debt }} EC.
{{ endif }}
| Price | Quantity bid | Quantity purchased | Gain |
|---|---|---|---|
| {{ C.PURCHASE_PRICE_BOND.0 }} | {{ player_bids.0 }} | {{ player_purchased.0 }} | {{ player_gain.0 }} |
| {{ C.PURCHASE_PRICE_BOND.1 }} | {{ player_bids.1 }} | {{ player_purchased.1 }} | {{ player_gain.1 }} |
| {{ C.PURCHASE_PRICE_BOND.2 }} | {{ player_bids.2 }} | {{ player_purchased.2 }} | {{ player_gain.2 }} |
| {{ C.PURCHASE_PRICE_BOND.3 }} | {{ player_bids.3 }} | {{ player_purchased.3 }} | {{ player_gain.3 }} |
| {{ C.PURCHASE_PRICE_BOND.4 }} | {{ player_bids.4 }} | {{ player_purchased.4 }} | {{ player_gain.4 }} |
| {{ C.PURCHASE_PRICE_BOND.5 }} | {{ player_bids.5 }} | {{ player_purchased.5 }} | {{ player_gain.5 }} |
| {{ C.PURCHASE_PRICE_BOND.6 }} | {{ player_bids.6 }} | {{ player_purchased.6 }} | {{ player_gain.6 }} |
| Total | {{ player_sum_bids }} | {{ player_sum_purchased }} | {{ player_sum_earned }} |
| Price | Quantity | Total value |
|---|---|---|
| {{ C.PURCHASE_PRICE_BOND.0 }} | {{ government_purchased.0 }} | {{ government_value.0 }} |
| {{ C.PURCHASE_PRICE_BOND.1 }} | {{ government_purchased.1 }} | {{ government_value.1 }} |
| {{ C.PURCHASE_PRICE_BOND.2 }} | {{ government_purchased.2 }} | {{ government_value.2 }} |
| {{ C.PURCHASE_PRICE_BOND.3 }} | {{ government_purchased.3 }} | {{ government_value.3 }} |
| {{ C.PURCHASE_PRICE_BOND.4 }} | {{ government_purchased.4 }} | {{ government_value.4 }} |
| {{ C.PURCHASE_PRICE_BOND.5 }} | {{ government_purchased.5 }} | {{ government_value.5 }} |
| {{ C.PURCHASE_PRICE_BOND.6 }} | {{ government_purchased.6 }} | {{ government_value.6 }} |
| Total | {{ government_total_purchased }} | {{ government_total_value }} |