{% macro actions_section(actions, note=None) %}
Recommended next steps

Investigations to queue from this report

{% if note %}
{{ markdown_render(note.text) }}
{% endif %} {% if actions %}
    {% for a in actions %}
  1. {{ a.detail if a.detail else a.step }}
    {{ a.host_count }} host{% if a.host_count != 1 %}s{% endif %} ยท {{ a.preview }} {%- if a.extra %} (+{{ a.extra }} more){% endif %}
  2. {% endfor %}
{% else %}

No recommended next steps in this artifact.

{% endif %}
{% endmacro %}