{{ extends 'global/Page.html' }} {{ block title }}Round Summary{{ endblock }} {{ block content }}
You have completed the practice session. Here is a summary of your performance:
| Metrics | {% for period in display_game_history %}Period {{ 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 %}
Your selected range: {{ practice_lower }} to {{ practice_upper }}
Realized demand: {{ practice_realized_demand }}
{% if practice_hit %}You were correct: the realized demand fell within your selected range.
{% else %}Your range did not include the realized demand this time.
{% endif %}