{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Supplier Restock Review{% endblock %} {% block head_extra %} {% endblock %} {% block content %}
Supplier: {{ item.supplier_name or 'Supplier' }}
Product: {{ item.product_name }}
Quantity: {{ item.approved_qty }} unit(s)
Unit Cost: {{ "%.2f"|format(item.unit_cost or 0) }}
Status: {{ item.status }}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}{{ message }}
{% endfor %} {% endif %} {% endwith %}