{% extends "global/Page.html" %}
{% load otree static %}
{% block title %}
{% endblock %}
{% block content %}
Period {{ player.round_number }} : Allocation Decision
Capacity K=100
|
Retailer A |
Retailer B |
Total |
| Order quantity |
{{ player.order1 }} |
{{ player.order2 }} |
{{ player.total }} |
| Allocation |
{% formfield player.allocation1 label = ""%} |
{% formfield player.allocation2 label = ""%} |
|
History
| Period |
Retailer A |
Retailer B |
| Order |
Allocation |
Order |
Allocation |
{% for p in player_in_previous_rounds %}
| {{ p.round_number }} |
{{ p.order1}} |
{{ p.allocation1 }} |
{{ p.order2 }} |
{{ p.allocation2 }} |
{% endfor %}
Instructions
{% include Constants.instructions_template %}
{% endblock %}