otree-server / bertrand /Results.html
BPEL Bot
Initial Hugging Face deployment
e40dce0
{{ block title }}Results{{ endblock }}
{{ block content }}
<table class="table">
<tr>
<th>Your price</th>
<td>{{ player.price }}</td>
</tr>
<tr>
<th>Lowest price</th>
<td>{{ group.winning_price }}</td>
</tr>
<tr>
<th>Was your product sold?</th>
<td>{{ if player.is_winner }} Yes {{ else }} No {{ endif }}</td>
</tr>
<tr>
<th>Your payoff</th>
<td>{{ player.payoff }}</td>
</tr>
</table>
{{ next_button }}
{{ include_sibling 'instructions.html' }}
{{ endblock }}