{% extends 'base.html' %} {% block title %}Purchase Orders{% endblock %} {% block content %}

Purchase Orders

➕ New Order
Reset
{% for po in orders %} {% empty %} {% endfor %}
Reference Supplier Items Total Status Date
{{ po.reference }} {{ po.supplier.name }} {{ po.items.count }} {{ po.total|floatformat:0 }} {{ po.get_status_display }} {{ po.date|date:"d M Y" }} View
No purchase orders yet. Create first order
{% include 'partials/pagination.html' with page_obj=orders %} {% endblock %}