{% extends "admin/base_site.html" %} {% load static brevo_filters %} {% block title %}Email List{% endblock %} {% block extrahead %} {{ block.super }} {% endblock %} {% block breadcrumbs %}
{% endblock %} {% block content %}| Recipient ↕ | Subject ↕ | Sent Date ↕ | Status ↕ |
|---|---|---|---|
| {{ email.recipient_email }} | {{ email.subject|truncatewords:10 }} | {{ email.sent_at|date:"Y-m-d H:i" }} | {% if email.current_status == 'clicked' %} Clicked {% elif email.current_status == 'opened' %} Opened {% elif email.current_status == 'delivered' %} Delivered {% elif email.current_status == 'bounced' %} Bounced {% elif email.current_status == 'blocked' %} Blocked {% elif email.current_status == 'deferred' %} Deferred {% elif email.current_status == 'unsubscribed' %} Unsubscribed {% else %} Sent {% endif %} |
No emails found.
{% if search or status_filter != 'all' %}Try adjusting your search filters.
{% endif %}