{% extends "base.html" %} {% block title %}{{ customer['CompanyName'] }} - Northwind Traders{% endblock %} {% block content %}
| ID: | {{ customer['CustomerID'] }} |
| Company: | {{ customer['CompanyName'] }} |
| Contact: | {{ customer['ContactName'] or '-' }} |
| Title: | {{ customer['ContactTitle'] or '-' }} |
| Address: | {{ customer['Address'] or '-' }} |
| City: | {{ customer['City'] or '-' }} |
| Region: | {{ customer['Region'] or '-' }} |
| Postal Code: | {{ customer['PostalCode'] or '-' }} |
| Country: | {{ customer['Country'] or '-' }} |
| Phone: | {{ customer['Phone'] or '-' }} |
| Fax: | {{ customer['Fax'] or '-' }} |
| Order ID | Date | Shipper | Total Amount | |
|---|---|---|---|---|
| #{{ order['OrderID'] }} | {{ order['OrderDate'] }} | {{ order['Shipper'] }} | ${{ "%.2f"|format(order['TotalAmount']) }} |
No orders found for this customer
{% endif %}