Pending Emails in {{ folder.name }}

{% if errors and errors.general %}
{{ errors.general }}
{% endif %}
Total Emails
{{ folder.total_count }}
Pending
{{ pending_emails|length }}
Processed
{{ folder.total_count - pending_emails|length }}
{% if pending_emails %}
{% for email in pending_emails %} {% endfor %}
Subject From Date Actions
{{ email.subject }} {{ email.from }} {{ email.date }}
{% else %}
No pending emails found in this folder.
{% endif %}