{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Reports{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Gvelo Enterprise Platform

Business Reports

{{ ui.button('Smart Export & BI Distribution', '/reports/exports') }} {{ ui.button('Enterprise Reporting', '/reports/enterprise') }}


๐Ÿ’ฐ Total Sales

{{sales}}

๐Ÿงพ Total Transactions

{{transactions}}

๐Ÿ“ฆ Stock Remaining

{{stock}}


๐Ÿ† Top Products

{% for p in top_products %}

{{p[0]}} (Stock: {{p[1]}})

{% endfor %}

๐Ÿ“‰ Low Performing Products

{% for p in low_products %}

{{p[0]}} (Stock: {{p[1]}})

{% endfor %}
Back
{% endblock %}