{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
Public Goods Demon -- Results
{% endblock %}
{% block content %}
Your value was {{ player.value }}
Your bid was {{ player.bid }}
The highest bid was {{ group.highest_bid }}
The second highest bid was {{ group.second_highest_bid }}
you {% if player.is_winner == True %} won
{% else %} did not win
{% endif %} the auction
Your total payoff is {{ player.payoff }}
Your total earning so far: {{ player.participant.vars.totalEarnings }}.
{% next_button %}
{% endblock %}