{% extends 'superuser/base_superuser.html' %} {% block title %}Company-Wise AI Replies | Superuser{% endblock %} {% block ai_replies_active %}active{% endblock %} {% block workspace %}
{% if company_replies %}
{% for cr in company_replies %}

{{ cr.company.name }} ({{ cr.company.ai_provider|title }} - {{ cr.company.model_name }})

{% for reply in cr.replies %}
To: {{ reply.visitor_id }} {{ reply.created_at|date:"M d, Y H:i:s" }}
{{ reply.content }}
{% endfor %}
{% endfor %}
{% else %}

No AI replies found yet.

{% endif %}
{% endblock %}