{% extends "admin/layout.html" %} {% block body %}
{% trans %}Send emails and push notifications to targeted users{% endtrans %}
| {% trans %}Date{% endtrans %} | {% trans %}Channel{% endtrans %} | {% trans %}Subject / Title{% endtrans %} | {% trans %}Recipients{% endtrans %} | {% trans %}Email{% endtrans %} | {% trans %}Push{% endtrans %} | {% trans %}Status{% endtrans %} | {% trans %}Actions{% endtrans %} | |
|---|---|---|---|---|---|---|---|---|
| {% if h.status == 'sent' and h.sent_at %} {{ h.sent_at[:16] }} {% elif h.status == 'scheduled' and h.scheduled_at %} ⏰ {{ h.scheduled_at[:16] }} {% else %} {{ h.created_at[:16] }} {% endif %} | {{ h.channel }} | {{ h.email_subject or h.push_title or '—' }} | {{ h.total_recipients }} | {% if h.status == 'scheduled' %}—{% else %}{{ h.emails_sent }}{% endif %} | {% if h.status == 'scheduled' %}—{% else %}{{ h.push_sent }}{% endif %} | {% if h.status == 'sent' %} {% trans %}Sent{% endtrans %} {% elif h.status == 'scheduled' %} {% trans %}Scheduled{% endtrans %} {% elif h.status == 'cancelled' %} {% trans %}Cancelled{% endtrans %} {% elif h.status == 'missed' %} {% trans %}Missed{% endtrans %} {% else %} {{ h.status }} {% endif %} | {% if h.status == 'sent' %} {% trans %}Report{% endtrans %} {% elif h.status == 'scheduled' %} {% endif %} |
{% trans %}No broadcasts sent yet.{% endtrans %}