{% extends "quillet/base.html" %} {% block title %}Subscribers — {{ newsletter.name }}{% endblock %} {% block head %} {% endblock %} {% block content %}
{{ confirmed | length }} confirmed of {{ subscribers | length }} total
{% if subscribers %}| Status | Since | ||
|---|---|---|---|
| {{ sub.email }} | {% if sub.unsubscribed %} Unsubscribed {% elif sub.confirmed_at %} Confirmed {% else %} Pending {% endif %} | {{ sub.confirmed_at.strftime('%b %d, %Y') if sub.confirmed_at else '—' }} |
No subscribers yet.
{% endif %} {% endblock %}