{{ 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 %}