{% extends "base.html" %} {% from "_recon_table.html" import render_table, drill_table %} {% block title %}Reconciliation — RWA Calculator{% endblock %} {% block content %}
Run this calculator and reconcile its output against your legacy calculator, component by component (EAD, RWA, risk weight, PD, LGD, CCF, exposure class, …). Each row is bucketed as match / within-tolerance / break / missing, with our reason and input drivers attached so a break can be triaged to a data fix or an engine fix.
{% if error %}Each row links into the per-key explorer, pre-filtered to that segment.
{% if result.allocation_table.rows %}Each side's exposures are totalled by risk class (a split exposure's portions each counted in their own class). Offsetting deltas show where the two engines allocate an exposure to different classes.
{{ render_table(result.allocation_table) }} {% endif %}Click a key to open its single-loan forensic, or open the full per-key explorer ({{ "{:,}".format(result.total_rows) }} row(s)). Download the full per-key detail: CSV · Excel.
{{ drill_table(result.biggest_breaks, "_recon_key", result.loan_url_base, "key") }} {% endif %} {% endif %} {% endblock %}