{% extends "base.html" %} {% from "_recon_table.html" import fmt, render_table %} {% block title %}Loan forensic — RWA Calculator{% endblock %} {% block content %}

← Back to the report · per-key explorer

Loan forensic

{{ detail.recon_key }}

{{ detail.row_bucket or "—" }}
row bucket
{{ detail.worst_component or "—" }}
worst component
{{ detail.exposure_class or "—" }}
exposure class
{{ detail.approach or "—" }}
approach

By component — legacy vs ours

{% for p in detail.panels %} {% endfor %}
componentlegacyoursabs Δrel Δbucket
{{ p.component }} {{ fmt(p.legacy) }} {{ fmt(p.ours) }} {{ fmt(p.abs_delta) }} {{ fmt(p.rel_delta) }} {{ p.bucket if p.bucket is not none else "" }}
{% if detail.breaks.rows %}

Breaks for this key

{{ render_table(detail.breaks) }} {% endif %} {% if detail.drivers %}

Input & explain drivers

The wide explain / input columns behind this row — dropped from the on-screen summary tables and previously reachable only via the CSV export.

{% for k, v in detail.drivers.items() %} {% endfor %}
{{ k }}{{ fmt(v) }}
{% endif %} {% endblock %}