{% if candidates %}
{% for row in candidates %}
{{ row.name or row.uuid }} {% if row.source %}
{{ row.source }}
{% endif %}
{% if row.label %} {{ row.label }} {% endif %} {% if row.kind %} {{ row.kind }} {% endif %} {% if row.type %} {{ row.type }} {% endif %}
{% if row.cluster_id %}
Cluster: {{ row.cluster_id }}
{% endif %} {% if row.evidence_strength %}
Evidence: {{ row.evidence_strength }}
{% endif %} {% if row.distinct_sessions %}
Sessions: {{ row.distinct_sessions }}
{% endif %} {% if row.last_seen %}
{{ row.last_seen }}
{% endif %} {% if row.content %}
{{ row.content[:200] }}{% if row.content|length > 200 %}...{% endif %}
{% endif %} {% if row.notes %}
{% if row.notes is iterable and row.notes is not string %} Notes: {{ row.notes|join(", ") }} {% else %} Notes: {{ row.notes }} {% endif %}
{% endif %}
{% endfor %}
{% else %}

No candidate entities awaiting review.

{% endif %}