{% extends 'dashboard/base.html' %} {% block title %}Contact Inquiries - AI Digital Ranker CMS{% endblock %} {% block content %}

Inquiry Leads

Manage details and submissions from your public website's contact form

{% if query %} Reset {% endif %}
{% for lead in page_obj %} {% empty %} {% endfor %}
Sender Name Email Address Phone Number Subject Title Date Received Actions
{{ lead.name }} {{ lead.email }} {{ lead.phone }} {{ lead.subject|truncatechars:40 }} {{ lead.created_at|date:"M d, Y H:i" }}
No contact inquiries/leads found.
{% if page_obj.has_other_pages %}
Showing {{ page_obj.start_index }} to {{ page_obj.end_index }} of {{ page_obj.paginator.count }} entries
{% endif %}
{% endblock %}