{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
Results{% endblock %}
{% block content %}
Your value was {{ player.value }}
Your bid was {{ player.bid }}
The second highest bid was {{ group.second_hi_bid }}
You {% if player.is_winner == True %} won {% else %} did not win {% endif %} the auction
In this round you earned {{ player.participant.payoff }}
So far you have earned {{ player.participant.vars.totalEarnings }}
{% next_button %}
{% endblock %}