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

Operational Trust

Confidence scoring for receipts, inventory, backups, checkout continuity, and transaction integrity.
Support
Confidence {{ snapshot.confidence_score }}% {{ snapshot.status|replace('_', ' ')|title }}
Open Warnings {{ snapshot.warnings|length }} Automatic warning system

Latest Checks

{% for check in snapshot.checks %}
{{ check.status|title }} {{ check.check_type|replace('_', ' ')|title }} - {{ check.score|round|int }}%

{{ check.message }}

{% else %}
Run checks to generate trust indicators.
{% endfor %}

Warnings

{% for warning in snapshot.warnings %}
{{ warning.severity|title }} {{ warning.warning_type|replace('_', ' ')|title }}

{{ warning.message }}

{% else %}
No open warnings.
{% endfor %}
{% endblock %}