{% extends "base.html" %} {% block title %}Platform Report{% endblock %} {% block content %}
| Platform | Orders | Qty | Sales Total | Cash Received | Cost | Gross Profit |
|---|---|---|---|---|---|---|
| {{ r.platform }} | {{ r.order_count }} | {{ r.total_qty }} | {{ '%.2f'|format(r.sales_total or 0) }} | {{ '%.2f'|format(r.cash_total or 0) }} | {{ '%.2f'|format(r.cost_total or 0) }} | {{ '%.2f'|format(r.gross_profit or 0) }} |
| No data. | ||||||