{% extends 'base.html' %} {% block title %}Process Delivery Note{% endblock title %} {% load static %} {% block page_style %} {% endblock page_style %} {% block page_js %} {% endblock page_js %} {% block page_content %} {% include 'messages.html' %}

Processing delivery from {{ request.session.supplier.supplier_name }}

{% csrf_token %} {{ form.as_p }} Change Supplier
{% if request.session.products|length > 0 %} {% for product in request.session.products %} {% endfor %}
#NameQtyBuyingRetailWholesaleTotal
{{ product.num }}. {{ product.product_name }} {{ product.quantity }} {{ product.buying_price }} {{ product.retail_price }} {{ product.wholesale_price }} {{ product.total_cost }}
Total 0.0 Clear Post Products
{% else %}
No items in this delivery note, add items from the left.
{% endif %}
{% endblock page_content %}