{% 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 }}

{% for row in messages %}
{{ row.content }}
{% if row.task_status %}
{{ row.task_status }}
{% endif %} {% if row.role == 'assistant' and (current_account.can_submit or current_account.is_superuser) %}
{% endif %}
{% if row.last_error %}
{% if row.last_error %}{{ row.last_error }}{% endif %}
{% endif %}
{% endfor %}
{% if current_account.can_submit or current_account.is_superuser %}
{{ "{:,}".format(max_message_len or 10000) }} remaining
{% else %}
This account is read-only.
{% endif %}
{% endblock %}