{% extends 'dashboard/base.html' %} {% block title %}Enquiries{% endblock %} {% block content %}

Customer Enquiries

Messages submitted through your website's contact form.

New{% if new_count %} ({{ new_count }}){% endif %} Read
{% for enquiry in enquiries %} {% empty %} {% endfor %}
NameEmailReceived
{{ enquiry.name }} {{ enquiry.email }} {{ enquiry.created_at|date:"d M Y, H:i" }} View Message
Nothing here.
{% endblock %}