{% extends 'custom_admin/base.html' %} {% load static %} {% block title %}Contact Messages - Admin Panel{% endblock %} {% block content %}

Contact Messages

Manage customer inquiries and contact form submissions

Total Messages

{{ stats.total_messages }}

New Messages

{{ stats.new_messages }}

Read Messages

{{ stats.read_messages }}

Replied

{{ stats.replied_messages }}

Closed

{{ stats.closed_messages }}

Clear Filters
{% csrf_token %}
Showing {{ page_obj.start_index }}-{{ page_obj.end_index }} of {{ page_obj.paginator.count }} messages
{% if page_obj %}
{% for message in page_obj %} {% endfor %}
Contact Property Interest Budget Status Date Actions
{{ message.first_name|first }}{{ message.last_name|first }}
{{ message.full_name }}
{{ message.email }}
{{ message.phone }}
{{ message.get_property_type_display }}
{{ message.get_budget_display }}
{{ message.get_status_display }} {{ message.created_at|date:"M d, Y H:i" }}
{% csrf_token %}
{% csrf_token %}
{% else %}

No contact messages

No messages match your current filters.

{% endif %}
{% if page_obj.has_other_pages %}
{% if page_obj.has_previous %} Previous {% endif %} {% if page_obj.has_next %} Next {% endif %}
{% endif %}
{% endblock %}