{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}AI Predictions{% endblock %} {% block head_extra %} {% endblock %} {% block content %}
{{ data.forecast.momentum_text }}
{{ data.totals.days_tracked }} tracked day(s)
Total revenue analyzed: {{ currency_symbol }} {{ "%.2f"|format(data.totals.total_revenue) }}
Total orders analyzed: {{ data.totals.total_orders }}
Estimated orders: {{ data.forecast.next_day_orders }}
Forecast built from recent sales rhythm and trend direction.
Average revenue per completed sale.
| Date | Orders | Revenue |
|---|---|---|
| {{ row["day"] }} | {{ row["orders"] }} | {{ currency_symbol }} {{ "%.2f"|format(row["revenue"]) }} |
| No sales history available yet. | ||
| Product | Stock | Risk |
|---|---|---|
| {{ item["name"] }} | {{ item["stock"] }} | {{ item["risk"] }} |
| No low stock products right now. | ||
| Product | Stock | Unit Price | Stock Value |
|---|---|---|---|
| {{ item["name"] }} | {{ item["stock"] }} | {{ currency_symbol }} {{ "%.2f"|format(item["price"]) }} | {{ currency_symbol }} {{ "%.2f"|format(item["stock_value"]) }} |
| No inventory data available. | |||