{% extends "mirrorwall/base.html" %} {% from "mirrorwall/components.html" import badge, card, empty_state, table %} {% from "_macros.html" import measure, short, trajectory_link %} {% block title %}Ledger — PromptCadence{% endblock %} {% block content %}
What was spent, and what each ceiling said at the moment it was spent. Money is
never stored — every figure here is derived from recorded usage and a pricing hash, and a local
model's cost is unpriced, never $0.00.
Spend, not headroom: no tier ceiling is configured, so a tier has an accumulated balance and nothing about it can be exceeded.
{% set columns = [{"label": "Tier"}, {"label": "Tokens"}, {"label": "Money"}] %} {% set rows = [] %} {% for one in report.position.tiers %} {% set _ = rows.append([one.tier, one.tokens_spent_display, one.money_spent_display]) %} {% endfor %} {{ table(columns, rows, caption="Ledger-wide spend by tier", row_count=rows | length) }} {% endif %}