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

Real-World Operations

Production readiness, demo businesses, workflow presets, and cashier simulations.
Readiness {{ snapshot.readiness.score }}% {{ 'Ready' if snapshot.readiness.ok else 'Review' }}
Workflow Presets {{ snapshot.workflow_presets|length }} Retail modes prepared
Simulations {{ snapshot.simulation_runs|length }} Recent cashier tests

Launch A Demo Business

Cashier Simulation

{% for key, workflows in snapshot.workflow_presets.items() %}

{{ key|title }}

{% for workflow in workflows %}
{{ workflow }}
{% endfor %}
{% endfor %}

Recent Simulation Runs

{% for run in snapshot.simulation_runs %} {% else %} {% endfor %}
WorkflowTransactionsAverage CheckoutFailedCreated
{{ run.workflow_type }}{{ run.simulated_transactions }}{{ run.average_checkout_seconds }}s{{ run.failed_checkouts }}{{ run.created_at }}
No simulations yet.
{% endblock %}