{% extends 'superuser/base_superuser.html' %} {% block title %}Form Submissions | ChatLab{% endblock %} {% block superuser_leads_active %}active{% endblock %} {% block workspace %}
{% if leads %}
{% for lead in leads %} {% endfor %}
Name Phone Number Page URL Submission Date Actions
{{ lead.name }} {{ lead.phone }} {% if lead.page_url %} {{ lead.page_url }} {% else %} Not provided {% endif %} {{ lead.created_at|date:"M d, Y H:i" }}
{% csrf_token %}
{% else %}
📋

No Form Submissions Yet

Form submissions captured from the landing page "Try Now" button will be listed here.

{% endif %}
{% endblock %}