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

Company Operations

Internal command center for tenants, subscriptions, deployment status, incidents, support, pilots, retention, and billing analytics.
Tenants {{ snapshot.tenants }}
Active Shops {{ snapshot.product_intelligence.active_shops }}
Daily Tx {{ snapshot.product_intelligence.daily_transactions }}
Pilots {{ snapshot.pilots.pilots|length }}

Support Queue

{% for item in snapshot.support_queue %}
{{ item.status }} - {{ item.count }}
{% else %}
No support queue.
{% endfor %}

Subscriptions

{% for item in snapshot.subscriptions %}
{{ item.plan_code }} / {{ item.status }} - {{ item.count }}
{% else %}
No subscription data.
{% endfor %}

Market Signals

{% for item in snapshot.market_validation.pain_points %}
{{ item.pain_point }} - {{ item.count }}
{% else %}
No market signals yet.
{% endfor %}
{% endblock %}