Instant Mode
{% if instant_messages %}
{% for row in instant_messages %}
{{ row.content }}
{% if row.task_status %}
{{ row.task_status }}
{% endif %}
Archived {{ row.archived_at or row.updated_at or row.created_at }}
{% if row.last_error %}
{{ row.last_error }}
{% endif %}
{% endfor %}
{% else %}
No archived instant messages.
{% endif %}