{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Supplier Portal{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Supplier Portal

{{ snapshot.account.supplier_name }}

Quotation requests and inventory sync for connected supplier operations.

{% for quote in snapshot.quotations %}
Quotation #{{ quote.id }}

Status: {{ quote.status }} | Requested: {{ quote.requested_at }}

{{ quote.quotation_json }}
{% else %}
No quotation requests yet.
{% endfor %}
{% endblock %}