I am trying to output all customer orders using the for loop {% for order in customer.orders %}. This only displays 20 orders and there is no way to pull the additional orders from the backend. I have looked through the associated code and there isn't anything paginating the orders and if I console.log the customer orders json it only returns the 20 as well. Does anyone know if this is setup by default and/or if there is a way to configure this to display all customer orders without a limit of 20?
CODE:
{% for order in customer.orders %}
<tr class="{% cycle 'odd', 'even' %} {% if order.cancelled %}cancelled_order{% endif %}">
<td>{{ order.name | link_to: order.customer_url }}</td>
<td><span class="note">{{ order.created_at | date: "%b %d, %Y" }}</span></td>
<td><span class="status_{{ order.financial_status }}">{{ order.financial_status }}</span></td>
<td><span class="status_{{ order.fulfillment_status }}">{{ order.fulfillment_status }}</span></td>
<td><span class="total money">{{ order.total_price | money }}</span></td>
</tr>
{% endfor %}