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

Customer Success

Health scoring, churn risk, onboarding completion, engagement, and retention recommendations.
Health{{ snapshot.current.health_score }}%{{ snapshot.current.churn_risk|title }} Risk
Onboarding{{ snapshot.current.onboarding_score|round|int }}%
Adoption{{ snapshot.current.adoption_score|round|int }}%
Reliability{{ snapshot.current.reliability_score|round|int }}%

Recommendations

{% for insight in snapshot.current.insights %}
{{ insight }}
{% else %}
Customer health is stable.
{% endfor %}

Success Events

{% for event in snapshot.events %}
{{ event.severity|title }} {{ event.title }}

{{ event.message }}

{% else %}
No success events yet.
{% endfor %}
{% endblock %}