Customer Dashboard
Welcome to Your Dashboard
Here are the products you've purchased:
{% for order in customer.orders %}Order #{{ order.name }}
-
{% for line_item in order.line_items %}
- {{ line_item.quantity }} x {{ line_item.product.title }} - ${{ line_item.price | money }} {% endfor %}
You haven't made any purchases yet.
{% endfor %}