{% extends 'ls_portal/base.html' %} {% block body_class %}chat-page{% endblock %} {% block content %}
Haigh Environmental Executive Assistant

{{ current_account.display_name or current_account.username }}

Old chat archive
Action Mode
{% if messages %}
{% for row in 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 action messages.
{% endif %}
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 %}
{% endblock %}