{% extends "base.html" %} {% block title %}{% if repo %}{{ repo.name }}{% else %}{{ name }} — Not Found{% endif %} — Audit Serve{% endblock %} {% block content %} {% if error %}

The portfolio truth snapshot doesn't contain {{ name }}. Run audit report {{ name }} --portfolio-truth to populate it.

← Dashboard

{% else %}

Scores

{% if repo.interest_score is defined %} {% endif %}
Total Score{{ "%.1f"|format(repo.total_score|default(repo.score)|float) }}
Risk Score{{ "%.1f"|format(repo.risk_score|default(repo.risk)|float) }}
Completeness{{ "%.1f"|format(repo.completeness_score|default(repo.completeness)|float) }}
Interest Score{{ "%.1f"|format(repo.interest_score|float) }}

Run History (last 5)

{% if history %} {% for h in history %} {% endfor %}
RunDateScore
{{ h.run_id[:8] }} {{ h.generated_at[:10] }} {{ "%.1f"|format(h.total_score|float) }}
{% else %}

No warehouse history found for this repo.

{% endif %}
{% if dimension_scores %}

Dimension Scores

{% for d in dimension_scores %} {% endfor %}
DimensionScoreWeight
{{ d.dimension }} {{ "%.1f"|format(d.score|float) }} {{ d.weight }}
{% endif %}

← Dashboard

{% endif %} {% endblock %}