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

Business Activity

Daily operational dependence, active cashiers, branch activity, uptime, and retention risk indicators.
{% if snapshot.current %}
Health {{ snapshot.current.health_score }}% {{ snapshot.current.retention_risk|title }} Risk
Dependency {{ snapshot.current.dependency_score }}%
Active Days {{ snapshot.current.active_days }}

Daily Operations

{% for row in snapshot.daily_operations %} {% else %} {% endfor %}
Date Cashiers Branches Transactions Revenue Uptime
{{ row.operation_date }} {{ row.active_cashiers }} {{ row.active_branches }} {{ row.transaction_count }} {{ "%.2f"|format(row.revenue or 0) }} {{ row.uptime_score }}%
No daily operations yet.
{% else %}
Daily Shops {{ snapshot.daily_active_shops }}
Weekly Shops {{ snapshot.weekly_active_shops }}
Monthly Shops {{ snapshot.monthly_active_shops }}
Daily Cashiers {{ snapshot.daily_active_cashiers }}
{% endif %}
{% endblock %}