{% extends 'dashboard/base.html' %} {% load static %} {% block title %}{{ title }} - {{ seo_settings.meta_title }}{% endblock title %} {% block content %}

Contact Submissions

{% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if form.errors %}
Error:
    {% for field, errors in form.errors.items %} {% for error in errors %}
  • {{ field }}: {{ error }}
  • {% endfor %} {% endfor %}
{% endif %}
{% for contact in contacts %} {% endfor %}
# Name Email Phone Action
{{ forloop.counter }} {{ contact.name }} {{ contact.email }} {{ contact.phone }}
{% endblock %}