{% extends "epic/base_layout.html" %} {% load humanize %} {% block buttons %} Up Add New Shipment {% endblock buttons %} {% block content %} {{ block.super }}

Existing Shipments

{{ list_pager|safe }} {% for shipment in shipment_list %} {% endfor %}
SO # PO # From To Tracking #s Order Date Ship Date Notes
{{ shipment.html_link|safe }} {% if shipment.from_warehouse %} n/a {% else %} {{ shipment.ordr.html_link|safe }} {% endif %} {% if shipment.from_warehouse %} {{ shipment.from_warehouse.html_link|safe }} {% else %} {{ shipment.ordr.vendor.html_link|safe }} {% endif %} {{ shipment.warehouse.html_link|safe }} {{ shipment.html_tracking_links|safe }} {% if shipment.from_warehouse %} n/a {% else %} {{ shipment.ordr.ts|date:"Y‑m‑d" }} {% endif %} {{ shipment.ts|date:"Y‑m‑d" }} {{ shipment.notes|linebreaksbr }}
{{ list_pager|safe }}
{% endblock content %}