{{ extends 'global/Page.html' }} {{ block title }} {{ endblock }} {{ block content }}
| Sales Price | $15.00 / unit / round |
| Purchase Cost | $6.00 / unit / round |
| Holding Cost | $1.00 / unit / round |
| Forecasted Demand Distribution | N~(500, {{ current_demand_std }}) |
| Metrics | {% for data in game_history %}Period {{ data.period }} | {% endfor %}
|---|---|
| Leftover Inventory | {% for data in game_history %}{{ data.starting_inventory }} | {% endfor %}
| Order Quantity | {% for data in game_history %}{% if data.order_quantity != '' %}{{ data.order_quantity }}{% else %} {% endif %} | {% endfor %}
| Actual Demand Quantity | {% for data in game_history %}{% if data.demand_quantity != '' %}{{ data.demand_quantity }}{% else %} {% endif %} | {% endfor %}
| Profit | {% for data in game_history %}{% if data.profit != '' %}${{ data.profit }}{% else %} {% endif %} | {% endfor %}
If you'd like to review the instructions in text form, you can find them here.
{{ next_button }}