{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Business Retention - Gvelo Enterprise Platform{% endblock %} {% block body_class %}operational-page ops-page{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Business Insights

Daily summaries, weekly reports, low-stock reminders, branch comparisons, and notification-ready insights.

Latest Insights

{% for insight in snapshot.insights %}
{{ insight.severity|title }} {{ insight.title }}

{{ insight.message }}

{% else %}
No insights generated yet.
{% endfor %}

Report Runs

{% for report in snapshot.reports %}
{{ report.report_type|title }} {{ report.created_at }}
{% else %}
No report runs yet.
{% endfor %}
{% endblock %}