{% if req == "basket" %}
Marked as threat
{% elif req == "clusters" %}
Suspicious programs of cluster {{ c }}
({{ n }} processes)
{% endif %}
{% for col in results.columns %}
{% if col[0] != '_' %}
{% if col in tooltips %}
{{ col }}{{ tooltips[col] }} |
{% else %}
{{ col }} |
{% endif %}
{% endif %}
{% endfor %}
{% for row in results.iloc %}
{% for col in results.columns %}
{% if col == "Count" %}
{{ row[col] }} |
{% elif col == "Score" %}
●
{{ row[col] }}
|
{% elif col[0] != '_' %}
{{ row[col] }} |
{% endif %}
{% endfor %}
{% endfor %}