{% extends 'layout.twig' %} {% block title %}Drink Types - {{ parent() }}{% endblock %} {% block content %}

Drink Types

Add New Drink Type
{% if drinkTypes is empty %}
No drink types found. Click the button above to add your first drink type.
{% else %}
{% for drinkType in drinkTypes %} {% endfor %}
ID Name Description Desired Stock Current Stock Actions
{{ drinkType.id }} {{ drinkType.name }} {{ drinkType.description|default('-') }} {{ drinkType.desiredStock }} {% if drinkType.currentStock is defined %} {% if drinkType.currentStock < drinkType.desiredStock %} {{ drinkType.currentStock }} {% else %} {{ drinkType.currentStock }} {% endif %} {% else %} - {% endif %}
{% endif %} {% endblock %}