{% extends 'partials/base.html' %} {% load humanize %} {% block content %}
{{ orders }}
Orders
${{ spent|floatformat:2|intcomma }}
Total paid

{{ orders }} orders

{% for a in my_orders %}
{{ a.name }} ${{ a.amount|floatformat:2|intcomma }}x{{ a.qty }}
Log · {{ a.qty }} keys · {{ a.date }}
${{ a.amount|floatformat:2|intcomma }} Delivered
{% endfor %}
{% endblock content %}