{% extends "base.html" %}{% block title %}Sales Insights{% endblock %}{% block content %}

🧠 Sales Insights

Best Selling Items

{% for i in top_items %}{% endfor %}
ItemSold QtyRevenueCostGross Profit
{{i.item_name}}{{i.sold_qty}}{{'%.2f'|format(i.revenue or 0)}}{{'%.2f'|format(i.cost_total or 0)}}{{'%.2f'|format(i.gross_profit or 0)}}

Low Margin Orders (< 10%)

{% for l in low_margin %}{% else %}{% endfor %}
OrderItemSaleCostProfitSuggestion
{{l.id}}{{l.item_name}}{{l.total_price}}{{l.cost}}{{l.profit}}Check cost or increase selling price.
No low margin orders found.
{% endblock %}