{% extends "base.html" %} {% block content %}

Purchase History

{{ stats[0] or 0 }}

Total Sales

${{ "%.2f"|format(stats[1] or 0) }}

Total Revenue

{{ stats[2] or 0 }}

Active Buyers
Recent Purchases
Showing last 500 transactions
{% for purchase in purchases %} {% endfor %} {% if not purchases %} {% endif %}
Date & Time Reseller Product Category Key Price Actions
{{ purchase[2][:16] if purchase[2] else 'N/A' }}
{{ purchase[2][16:] if purchase[2] and purchase[2]|length > 16 else '' }}
{{ purchase[3] }}
{{ purchase[5] }}
{{ purchase[7] }}
{{ purchase[8] }} {{ purchase[1][:20] }}{% if purchase[1]|length > 20 %}...{% endif %} ${{ "%.2f"|format(purchase[6]) }}
No purchases found
{% endblock %}