{% extends "admin_base.html" %} {% block title %}Messages | Nexora Admin{% endblock %} {% block content %}

Inbox

Reviews & Complaints

About page ke contact form se aaye hue messages.

{% if contacts %}
{% for contact in contacts %}
{{ contact.name[:1] | upper }}
{{ contact.name }} {{ contact.email }} ยท {{ contact.phone }}

{{ contact.message }}

Reply {% if can('contacts_delete') %}
{% endif %}
{% endfor %}
{% else %}
No messages have arrived yet.
{% endif %}
{% endblock %}