{{ extends 'global/Page.html' }} {{ block title }}Round Summary{{ endblock }} {{ block content }}
You have completed Game {{ round_number }}. Here is a summary of your performance:
| Metrics | {% for period in display_game_history %}Round{{ period.period }} | {% endfor %}
|---|---|
| Leftover Inventory | {% for period in display_game_history %}{{ period.starting_inventory }} | {% endfor %}
| Order Quantity | {% for period in display_game_history %}{{ period.order_quantity }} | {% endfor %}
| Demand Quantity (realized) | {% for period in display_game_history %}{{ period.demand_quantity }} | {% endfor %}
| Profit | {% for period in display_game_history %}${{ period.profit }} | {% endfor %}
You will now proceed to Game 2. All parameters have been reset to their original values.
{% endif %} {{ next_button }} {{ endblock }}