{% extends "madga/studio/base.html" %} {% load i18n humanize madga_studio_tags %} {% block breadcrumbs %} {% trans "Broadcasts" %} / {% trans "Subscribers" %} {% endblock %} {% block content %}

{% trans "Subscribers" %}

{% trans "People who get this site's email broadcasts." %}

{% csrf_token %}
{% trans "Active" %}{{ active_count }} {% trans "Unsubscribed" %}{{ unsubscribed_count }}
{% for sub in subscribers %} {% empty %} {% endfor %}
{% trans "Email" %} {% trans "Source" %} {% trans "Status" %} {% trans "Joined" %}
{{ sub.email }}{% if sub.name %} · {{ sub.name }}{% endif %} {{ sub.get_source_display }} {% if sub.is_active %}{% studio_badge "published" _("Active") %}{% else %}{% studio_badge "archived" _("Unsubscribed") %}{% endif %} {{ sub.created_at|naturaltime }}
{% csrf_token %}
{% studio_empty title=_("No subscribers here yet") message=_("Add one above, or wait for someone to opt in.") %}
{% if page_obj.paginator.num_pages > 1 %} {% include "madga/studio/components/pagination.html" with page_obj=page_obj %} {% endif %}
{% endblock %}