{% extends 'partials/base.html' %} {% load static %} {% block content %}
{% block title %} {% include 'partials/title.html' with title='Contact Messages' text='Dashboard' textone='Support' texttwo='Contact Messages' %} {% endblock %}

Contact Messages List

{% for record in contact_messages %} {% endfor %}
ID Name Phone Email Message Date Action
{{ record.ID }} {{ record.Phone }} {{ record.Email }} {{ record.Message }} {{ record.Date }}
{% endblock %}