{% extends "base.html" %} {% block content %}
| Customer Name | Total Value Of Orders | |
|---|---|---|
| {{ customer.full_name }} | {{ customer.email }} | {{ '%.2f'|format(invoices_total) }} |
Name: {{ customer.full_name }}
Address: {{ customer.address }}
City: {{ customer.city }}, {{ customer.state }} {{ customer.postal_code }}
Phone: {{ customer.phone }}
Email: {{ customer.email }}
Support Rep: {{ customer.support_rep.full_name }}
| Invoice Id | Invoice Date | Total |
|---|---|---|
| {{ invoice.invoice_id}} | {{ invoice.invoice_date }} | {{ invoice.total }} |
| Total | {{ invoices_total }} |