A clear morning number
How did yesterday go?
Each report comes from the orders in PostgreSQL. Open one before the day gets noisy.
Report for
{{ report.report_date.strftime('%A, %B %-d') }}
What sold
{% for item in report.top_items %}{{ loop.index }}. {{ item.name }}${{ '%.2f'|format(item.revenue_cents / 100) }}
{% endfor %}Generated {{ report.generated_at.strftime('%b %-d at %-I:%M %p') }}
Your first report is one run away.
Open the Daily Sales Generator Service and choose Run Now.
Report history
{% for item in reports %}{{ item.report_date.strftime('%b %-d') }}${{ '%.2f'|format(item.revenue_cents / 100) }}{{ item.order_count }} orders{% else %}No reports yet.
{% endfor %}