{% extends "madga/studio/base.html" %} {% load i18n humanize madga_studio_tags %} {% block breadcrumbs %}{% trans "Broadcasts" %}{% endblock %} {% block content %}
{% blocktrans count n=subscriber_count %}{{ n }} active subscriber.{% plural %}{{ n }} active subscribers.{% endblocktrans %} {% if publishers %} {% blocktrans count n=publishers|length %}{{ n }} publisher configured.{% plural %}{{ n }} publishers configured.{% endblocktrans %} {% endif %}
{% blocktrans %}Set DEFAULT_FROM_EMAIL for the built-in email publisher, or register custom publishers (LinkedIn, Twitter, …) from your host project via @register_publisher.{% endblocktrans %}
| {% trans "Subject" %} | {% trans "Publisher" %} | {% trans "Targets" %} | {% trans "Status" %} | {% trans "When" %} | |
|---|---|---|---|---|---|
|
{{ job.subject|truncatechars:60 }}
{% if job.related_url %}{{ job.related_url }}{% endif %}
|
{{ job.publisher_key }} | {{ job.sent_count }} {% if job.failed_count %} + {{ job.failed_count }} {% trans "failed" %}{% endif %} / {{ job.targets_count }} | {% studio_badge job.status job.get_status_display %} | {% if job.finished_at %}{{ job.finished_at|naturaltime }}{% elif job.scheduled_at %}{% blocktrans with when=job.scheduled_at|naturaltime %}scheduled {{ when }}{% endblocktrans %}{% else %}{{ job.created_at|naturaltime }}{% endif %} |
{% if job.status == 'failed' or job.status == 'partial' %}
{% endif %}
{% if job.status == 'pending' %}
{% endif %}
|
| {% studio_empty title=_("No broadcasts yet") message=_("When you publish a post and pick \"Broadcast\", it'll show up here.") %} | |||||