{% extends 'base.html' %} {% load static %} {% block extra_head %} {% endblock %} {% block content %}
{% if orders %} {% for order in orders %}

Order #{{ order.id }}

{{ order.created_at|date:"M d, Y" }} | {{ order.status }}

View Details
{% for item in order.items.all|slice:":3" %}
{% if item.product.image %} {{ item.product.name }} {% else %} {{ item.product.name|slice:":1"|upper }} {% endif %}
{% endfor %} {% if order.items.count > 3 %}
+{{ order.items.count|add:'-3' }}
{% endif %}
Total: Rs. {{ order.total_price|floatformat:2 }} {{ order.items.count }} item{{ order.items.count|pluralize }} Payment: {{ order.payment_method }}
{% endfor %} {% else %}

No orders yet.

Start shopping and your orders will appear here.

Browse Products
{% endif %}
{% endblock %}