{% macro entities_table_brief(entities, limit=3) %}
Lowest-scoring hosts

Top {{ [entities|length, limit] | min }} by rank

{% for e in entities[:limit] %} {% endfor %}
# Host Score Band Top evidence
{{ e.rank }} {{ e.entity }} {{ e.score }} {{ score_bar(e.score) }} {{ e.band | humanize_band }} {{ e.evidence_top | normalize_percents }}
{% if entities | length > limit %}

{{ entities | length - limit }} more host{% if entities | length - limit != 1 %}s{% endif %} omitted in brief mode.

{% endif %}
{% endmacro %}