customers/orders
The customers/orders template renders the customer orders page,which displays an overview of all the customer's historical orders.

Location
The customers/orders template is located in the templates > customers directory of the theme:
└── theme
├── layout
├── templates
| └── customers
| ├── orders.json
| ...
...
Content
You should include the customer object form in your customers/orders template or a section inside of the template.
The customer object
You can access the Handlebars customer object to display the customer order list.
Usage
When working with the customers/orders template, you should familiarize yourself with the following:
If you're using a JSON template, then any HTML or Handlebars code needs to be included in a section that's referenced by the template.
Show the customer’s orders
You should show customers a list of their orders. These can be accessed through the order attribute of the customer object, and have a limit of 10 per page. For this reason, you should paginate orders to ensure that they’re all accessible:
{{#paginate customer.orders by=10}}
{{#for customer.orders as |order|}}
<!-- order info -->
{{/for}}
{{/paginate}}