CustomerID | EmployeeID | OrderDate | RequiredDate | Freight | ShipAddress | ShipCity | ShipCountry | ShipName | ShippedDate | ShipPostalCode | ShipRegion | ShipVia | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ row.CustomerID if row.CustomerID != None else '' }} | {{ row.EmployeeID }} | {{ row.OrderDate.strftime('%m/%d/%Y') if row.OrderDate != None else '' }} | {{ row.RequiredDate.strftime('%m/%d/%Y') if row.RequiredDate != None else '' }} | {{ row.Freight }} | {{ row.ShipAddress }} | {{ row.ShipCity }} | {{ row.ShipCountry }} | {{ row.ShipName }} | {{ row.ShippedDate.strftime('%m/%d/%Y') if row.ShippedDate != None else '' }} | {{ row.ShipPostalCode }} | {{ row.ShipRegion }} | {{ row.ShipVia }} | {% end %}||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{% module Pager('/db/orders', pager) %} |