{% macro entities_table(entity_rows) %} {% set ns = namespace(total=0) %} {% for r in entity_rows %} {% if r.kind == "group" %}{% set ns.total = ns.total + r.count %} {% else %}{% set ns.total = ns.total + 1 %}{% endif %} {% endfor %}
Ranked hosts

{{ ns.total }} entities, ordered by producer rank

{% for r in entity_rows %} {% if r.kind == "single" %} {% set e = r.entity %} {% else %} {% set rep = r.representative %} {% endif %} {% endfor %}
# Host Score Δ Primary domain Band Confidence Top evidence
{{ e.rank }} {{ e.entity }} {{ e.score }} {{ score_bar(e.score) }} {% if e.delta == 0 %}±0 {% elif e.delta > 0 %}+{{ e.delta }} {% else %}{{ e.delta }}{% endif %} {{ e.primary_domain_label }} {{ e.band | humanize_band }} {{ e.confidence | humanize_confidence }} {{ e.evidence_top | normalize_percents }}
{{ r.first_rank }}–{{ r.last_rank }}
{{ r.count }} hosts
    {% for h in r.hosts %}
  • {{ h }}
  • {% endfor %}
{{ rep.score }} {{ score_bar(rep.score) }} {% if rep.delta == 0 %}±0 {% elif rep.delta > 0 %}+{{ rep.delta }} {% else %}{{ rep.delta }}{% endif %} {{ rep.primary_domain_label }} {{ rep.band | humanize_band }} {{ rep.confidence | humanize_confidence }} {{ rep.evidence_top | normalize_percents }} {% if r.evidence_varies %} (varies across {{ r.count }} hosts){% endif %}
{% endmacro %}