Annual Opex Total
{{ result.totals.overall_annual | currency_display(result.currency) }}
{% extends "base.html" %}
{% block title %}Processing Opex Planner · CalMiner{% endblock %}
{% block content %}
Capture recurring operational costs and review annual totals with escalation assumptions.Processing Opex Planner
Annual totals, escalation impacts, and category breakdowns.
{{ result.totals.overall_annual | currency_display(result.currency) }}
{% if result.totals.escalated_total is not none %} {{ result.totals.escalated_total | currency_display(result.currency) }} {% else %} — {% endif %}
{% if result.metrics.annual_average is not none %} {{ result.metrics.annual_average | currency_display(result.currency) }} {% else %} — {% endif %}
| Category | Annual Cost | Share (%) |
|---|---|---|
| {{ entry.category | title }} | {{ entry.annual_cost | currency_display(result.currency) }} | {% if entry.share is not none %}{{ entry.share | round(2) }}{% else %}—{% endif %} |
| Period | Base Cost | Escalated Cost |
|---|---|---|
| {{ entry.period }} | {{ entry.base_cost | currency_display(result.currency) }} | {% if entry.escalated_cost is not none %} {{ entry.escalated_cost | currency_display(result.currency) }} {% else %} — {% endif %} |
Run the calculation to populate summary metrics and timeline insights.
{% endif %}