{% extends 'base.html.twig' %} {% block title %}Inventory Overview{% endblock %} {% block body %}

Drink Inventory

{% if lowStock != [] %}
LOW STOCK ALERT
    {% for drinkType in lowStock %}
  • {{ drinkType.name }} ({{ drinkType.currentStock }} / {{ drinkType.wantedStock }})
  • {% endfor %}
{% if orders == [] %} Create New Order {% else %}

There are already orders planned:

{% endif %}
{% endif %}
Drink Inventory Overview
{% for drinkType in drinkTypes %} {% endfor %}
Drink Name Description Current Stock Wanted Stock Actions
{{ drinkType.name }} {{ drinkType.description }} {{ drinkType.currentStock }} {{ drinkType.wantedStock }}
{% endblock %}