{% extends "base.html" %} {% block content %}

Supplier Order Details

Reference {{ order.internal_ref }}
Supplier {% if order.supplier %} {{ order.supplier.name }} {% endif %}
Status {% include "supplier/order_status.html" with order=order %}
Created Date {{ order.created_date }}
Issued Date {{ order.issued_date }}
Delivered Date {{ order.delivery_date }}
{% if order.notes %}
Notes
{{ order.notes }}
{% endif %}

TODO

Here we list all the line ites which exist under this order... {% endblock %}