{% extends "base.html" %} {% block title %}Founder Dashboard — ComplyForm{% endblock %} {% block content %}

Founder Dashboard

Last updated: {{ computed_at or "Never" }}
{% if is_stale %}

Metrics are stale (last computed {{ computed_at or "never" }}). Data may be outdated.

{% endif %} {# ── TOP ROW: 2-second glance ── #}

Overview

{# ARR #}

ARR

{% if top_row.arr is not none %}${{ "{:,.0f}".format(top_row.arr) }}{% else %}—{% endif %}

{# MRR #}

MRR

{% if top_row.mrr is not none %}${{ "{:,.0f}".format(top_row.mrr) }}{% else %}—{% endif %}

{# Customers #}

Customers

{% if top_row.total_customers is not none %}{{ top_row.total_customers }}{% else %}—{% endif %}

{# System Health #}

System Health

{% if top_row.system_health == "green" %} {% elif top_row.system_health == "yellow" %} {% else %} {% endif %} {{ top_row.system_health }}

{# ── GROWTH ROW ── #}

Growth

{# NRR #}

NRR

{% if growth_row.nrr is not none %}{{ growth_row.nrr }}%{% else %}—{% endif %}

{# Logo Churn #}

Logo Churn (30d)

{% if growth_row.logo_churn_30d is not none %}{{ growth_row.logo_churn_30d }}%{% else %}—{% endif %}

{# Burn Multiple #}

Burn Multiple

{% if growth_row.burn_multiple is not none %}{{ growth_row.burn_multiple }}x{% else %}—{% endif %}

{# CAC Payback #}

CAC Payback

{% if growth_row.cac_payback_days is not none %}{{ growth_row.cac_payback_days }}d{% else %}—{% endif %}

{# ── HEALTH ROW ── #}

Health

{# Scan Frequency Trend #}

Scan Trend

{% if health_row.scan_frequency_trend == "up" %} {% elif health_row.scan_frequency_trend == "declining" %} {% else %} {% endif %} {{ health_row.scan_frequency_trend }}

{# Open Issues #}

Open P1+P2

{% if health_row.open_issues_p1_p2 is not none %}{{ health_row.open_issues_p1_p2 }}{% else %}—{% endif %}

{# Corpus Triples #}

Corpus Triples

{% if health_row.corpus_triples is not none %}{{ "{:,}".format(health_row.corpus_triples) }}{% else %}—{% endif %}

{# Cost-to-Revenue #}

Cost/Revenue

{% if health_row.cost_to_revenue_ratio is not none %}{{ health_row.cost_to_revenue_ratio }}%{% else %}—{% endif %}

{% endblock %}