{# what the agent's runtimes found for it to do, by where they found it #} {% if skills.answer != "listed" %}

{{ t.text("agents." ~ skills.answer, {"code": skills.code}) }}

{% elif not skills.groups|map(attribute=1)|select|list %}
{{ t.text("agents.no_skills") }}
{% else %} {% for source, items in skills.groups if items %}
{{ t.text("agents.skills." ~ source) }}
{% for item in items %}
{{ item.name }}{{ item.description }}
{% endfor %}
{% endfor %} {% endif %}