← 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
Name
Barcode
Price
Description
{% for item in items %} {% include 'modals/items.html' %}
{{ item.name }}
{{ item.barcode }}
{{ item.prettier_price }}
{{ item.description }}
Info
Buy
{% endfor %}
{% endblock %}