{% extends 'agent/base_agent.html' %} {% block title %}Submission Details #{{ object.id }} | ChatLab{% endblock %} {% block agent_submissions_active %}active{% endblock %} {% block header_center %} Submission Details {% endblock %} {% block custom_styles %} .detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 1.5rem; margin-top: 1rem; } @media (max-width: 768px) { .detail-grid { grid-template-columns: 1fr; gap: 1rem; } } {% endblock %} {% block workspace %}

Visitor Responses

{% if object.answers %}
{% for question, answer in object.answers.items %}
{{ question }}
{{ answer }}
{% endfor %}
{% else %}

No response data available.

{% endif %}

Details

Form Title:
{{ object.form.title }}
Trigger Keyword:
{{ object.form.keyword }}
Visitor Reference:
{{ object.visitor_id }}
Submitted At:
{{ object.created_at|date:"Y-m-d h:i:s A" }}

Workflow Status

{% csrf_token %}
{% endblock %}