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

Commercial Billing

Plans, trials, lifecycle events, cashier/branch limits, usage metrics, and feature gating.
Plan {{ snapshot.subscription.plan_code|title }} {{ snapshot.subscription.status }}
AI {{ 'On' if snapshot.plan_features.ai_forecasting else 'Off' }}
Analytics {{ 'On' if snapshot.plan_features.advanced_analytics else 'Off' }}

Change Plan

Usage

{% for item in snapshot.usage %}
{{ item.metric|title }} {{ item.value }} / {{ item.limit or 'unlimited' }} {% if item.billable_overage %} Over {{ item.billable_overage }} {% endif %}
{% endfor %}
{% endblock %}