{% macro score_landscape(summary, lowest_host, triage_strip, compact=False) %}
Score landscape

{% if compact %}Lowest host score{% else %}Where the work sits in the queue{% endif %}

Lowest scoring host
{% if lowest_host %}
{{ lowest_host.entity }}
Score {{ lowest_host.score }} {{ lowest_host.verdict_label }}
{% else %}
{% endif %}
{% if not compact %}
Triage state distribution
{{ triage_histogram(triage_strip.counts) }}
{% endif %}
{% endmacro %}