← back to hub ↑ parent
{% extends "base.html" %} {% block body %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message | safe }}
{% endfor %}
{% endif %} {% endwith %}

Available Items

{% for item in items %} {% include 'modals/items.html' %} {% endfor %}
Name Barcode Price Description
{{ item.name }} {{ item.barcode }} {{ item.prettier_price }} {{ item.description }}
{% endblock %}