{% extends 'agent/base_agent.html' %} {% block title %}Form Submissions | ChatLab{% endblock %} {% block agent_submissions_active %}active{% endblock %} {% block workspace %}
View and manage form data submitted by visitors through the chatbot widget.
| Submission ID | Form Name | Visitor Code | Status | Date | Actions |
|---|---|---|---|---|---|
| #{{ sub.id }} | {{ sub.form.title }} | {{ sub.visitor_id }} | {% if sub.status == 'pending' %} Pending {% elif sub.status == 'in_progress' %} In Progress {% elif sub.status == 'resolved' %} Resolved {% else %} Closed {% endif %} | {{ sub.created_at|date:"Y-m-d H:i" }} | View Details |
Shared form submission logs will appear here once visitors start submitting form details in the chat.