{% extends "base.html" %} {% load static %} {% block title %}{{ title }}{% endblock %} {% block content %}

{{ title }}

{% if search %} {% endif %}
{% for log in logs %} {% empty %} {% endfor %}
Date & Time Recipient Status Subject Error Message
{{ log.sent_at|date:"M d, Y H:i" }}
{{ log.recipient_email }} {% if log.recipient_name %}
{{ log.recipient_name }} {% endif %}
{% if log.status == 'sent' %} Sent {% elif log.status == 'failed' %} Failed {% else %} Pending {% endif %} {{ log.subject|truncatechars:50 }} {% if log.error_message %} {{ log.error_message|truncatechars:100 }} {% else %} - {% endif %}

No password reset emails found.
Showing {{ logs.count }} password reset email{{ logs.count|pluralize }} {% if search %}matching "{{ search }}"{% endif %} {% if status_filter %}with status "{{ status_filter }}"{% endif %}
{% endblock %}