{% extends 'base.html' %} {% block title %}My Spending — PickkerMarket{% endblock %} {% block content %}
{{ t.spending_kicker }}

{{ t.spending_title }}

{{ t.spending_intro }}

{{ t.spending_total_spent }} TSh {{ summary.total_spent|floatformat:0 }}
{{ t.spending_orders_placed }} {{ summary.order_count }}
{{ t.spending_average_order }} TSh {{ summary.avg_order|floatformat:0 }}

{{ t.spending_weekly_trend }}

{% if trend %}
{% for week in trend %}
{% if week.total > 0 %}{{ week.total|floatformat:0 }}{% endif %}
{{ week.label }}
{% endfor %}
{% endif %}

{{ t.spending_top_products }}

{{ t.spending_top_products_tip }}

{% if top_products %}
{% for p in top_products %} {% endfor %}
{{ t.spending_th_product }}{{ t.spending_th_total_spend }}{{ t.spending_th_quantity }}{{ t.spending_th_frequency }}
{{ p.name }} TSh {{ p.spend|floatformat:0 }} {{ p.quantity }} {{ p.order_frequency }} order{{ p.order_frequency|pluralize }}
{% else %}

{{ t.spending_empty }}

{% endif %}
{% endblock %}