{% extends 'partials/new_base.html' %} {% load static %} {% load humanize %} {% block content %}
Total Orders
{{ orders }}
Total Spent
NGN {{ spent|floatformat:2|intcomma }}
Latest Order History
{% if my_orders == "0" %}


No data found
{% else %} {% for p in my_orders %} {% endfor %} {% endif %}
Order ID Qty Amount(NGN) Date
{{ p.id }} {{ p.qty }} {{ p.amount|intcomma }} {{ p.date }}
{% endblock content %}