{% extends "../layout.html" %} {% load static %} {% block menubutton %}
  • Logout
  • {% endblock %} {% block content %}

    Orders Overview

    Orders
    {% for o in order %} {% endfor %}
    ID Order By Status Shipping City Shipping State Assigned To Comments
    {{ o.ORDER_ID }} {{ o.ORDERED_BY }} {% if o.STATUS == "Created" %} {{ o.STATUS }} {% endif %} {% if o.STATUS == "Processing" %} {{ o.STATUS }} {% endif %} {% if o.STATUS == "Packing" %} {{ o.STATUS }} {% endif %} {% if o.STATUS == "Shipped" %} {{ o.STATUS }} {% endif %} {{ o.SHP_CITY }} {{ o.SHP_STATE }} {{ o.ASSIGNEDTO }} {{ o.COMMENTS }}
    Incoming Orders
    {% for o in in_order %} {% endfor %}
    ID Product Quantity Price Supplier
    {{ o.ORDER_ID }} {{ o.PRODUCT_NAME }} {{ o.QUANTITY }} {{ o.PRICE }}$ {{ o.SUP_NAME }}
    Outgoing Orders
    {% for o in out_order %} {% endfor %}
    ID Product Quantity Price Distributor
    {{ o.ORDER_ID }} {{ o.PRODUCT_NAME }} {{ o.QUANTITY }} {{ o.PRICE }}$ {{ o.DIST_NAME }}
    {% endblock %}