{# partials/_attacks_list.html Inner content of the attack picker scrollable div. Expects: attacks — {local: [{name, tags, description, options, llm_required}], builtin: [...]} #} {% macro attack_btn(a) %}
{% endmacro %} {% if attacks.local %}
─ local ─
{% for a in attacks.local %}{{ attack_btn(a) }}{% endfor %} {% endif %} {% if attacks.builtin %} {% if attacks.local %}
─ built-in ─
{% endif %} {% for a in attacks.builtin %}{{ attack_btn(a) }}{% endfor %} {% endif %} {% if not attacks.local and not attacks.builtin %} No attack modules found. {% endif %}