Total Capex
{{ result.totals.overall | currency_display(result.currency) }}
{% extends "base.html" %}
{% block title %}Capex Planner · CalMiner{% endblock %}
{% block content %}
Plan capital requirements for {{ scenario.name if scenario else 'this scenario' }}.Capex Planner
Calculated totals and categorized breakdowns.
{{ result.totals.overall | currency_display(result.currency) }}
{{ result.totals.contingency_amount | currency_display(result.currency) }}
{{ result.totals.with_contingency | currency_display(result.currency) }}
| Category | Amount | Share |
|---|---|---|
| {{ row.category }} | {{ row.amount | currency_display(result.currency) }} | {{ row.share | percentage_display }} |
| Year | Spend | Cumulative |
|---|---|---|
| {{ entry.year }} | {{ entry.spend | currency_display(result.currency) }} | {{ entry.cumulative | currency_display(result.currency) }} |
Provide component details and calculate to see capex totals.
{% endif %}Charts render after calculations complete.