{% extends "global/Page.html" %} {% load otree static %} {% block title %} 入札結果 第{{ subsession.round_number }}ラウンド {% endblock %} {% block content %}
グループ番号は{{ participant.id_in_session }}番です.
グループ番号は必ずしもZoomのブレイクアウトルーム番号とは一致しません.
{% if player.is_winner %}
あなたはオークションに勝ちました!
{% if is_greedy %}
しかし,入札価格が財の真の価値より高かったため,あなたは損をしてしまいました.
{% elif player.utility == 0 %}
あなたの利得は0です.
{% endif %}
{% else %}
あなたはオークションに勝てませんでした.
{% endif %}
| グループの入札額 | {{ player.bid }} |
|---|---|
| 調査結果の値 | {{ player.estimated_value }} |
| 油田の価値額の予測値 | {{ player.forecast_value }} |
| 最高入札額 | {{ group.highest_value }} |
| 油田の価値 | {{ group.true_value }} |
| グループの利得 | {{ player.utility }} |