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

Drink Inventory

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