{% extends "shop/base.html" %} {% load mezzanine_tags shop_tags i18n %} {% block meta_title %}{% trans "Order History" %}{% endblock %} {% block title %}{% trans "Order History" %}{% endblock %} {% block breadcrumb_menu %} {{ block.super }}
  • {% trans "Order History" %}
  • {% endblock %} {% block main %} {% if orders %} {% for order in orders.object_list %} {% endfor %}
    ID {% trans "Date" %} {% trans "Qty" %} {% trans "Paid" %}  
    {{ order.id }} {{ order.time|date:"SHORT_DATE_FORMAT" }} {{ order.quantity_total }} {{ order.total|currency }}
    {% csrf_token %} {% if has_pdf %} {% trans "Download PDF" %} {% endif %} {% trans "View invoice" %}
    {% pagination_for orders %} {% else %}

    {% trans "You have not ordered anything from us yet." %}

    {% endif %} {% endblock %}