{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Enterprise Experience Center - Gvelo Enterprise Platform{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Enterprise Experience Center

System-wide consistency, universal search, command palette, notifications, auditability, localization, trust indicators, readiness, and performance guardrails.

Operational Trust

{% for indicator in snapshot.trust.indicators %}
{{ indicator.label }} {{ indicator.value }}
{% endfor %}

Readiness score {{ snapshot.readiness.score }}/100. Consistency score {{ snapshot.consistency.score }}/100.

Global Search

Command Palette

Press Ctrl+K anywhere, or use these shortcuts directly.

{% for command in snapshot.commands[:10] %}
{{ command.label }}
{{ command.keywords }}
{% endfor %}

Notification Center

{% for notice in snapshot.notifications[:10] %}
{{ notice.priority or notice.severity }} {{ notice.subject }}

{{ notice.message }}

{% else %}

No active operational notifications.

{% endfor %}

Consistency Engine

{% for check in snapshot.consistency.checks %}
{{ check.name }}

{{ check.detail }}

{% endfor %}

Enterprise Settings Governance

Currency {{ snapshot.localization.currency }}, language {{ snapshot.localization.language }}, timezone {{ snapshot.localization.timezone }}.

Performance Guardrails

{{ snapshot.performance.slow_count }} slow route event(s) above {{ snapshot.performance.threshold_ms }}ms.

{% for event in snapshot.performance.events[:5] %}
{{ event.path }}
{{ event.duration_ms }}ms | {{ event.severity }}
{% endfor %}

Operational Event Stream

{% for event in snapshot.stream %} {% else %} {% endfor %}
TimeSourceEventCategoryTarget
{{ event.created_at }} {{ event.source }} {{ event.event_type }} {{ event.category }} {{ event.target_type }} {{ event.target_id or '' }}
No event stream records yet.
{% endblock %}