{% extends "admin/layout.html" %} {% block title %}Broadcast Report #{{ send.id }} – Admin{% endblock %} {% block body %}
| {% trans %}User{% endtrans %} | {% trans %}Country{% endtrans %} | {% trans %}Plan{% endtrans %} | {% trans %}Email Sent{% endtrans %} | {% trans %}Opens{% endtrans %} | {% trans %}Push Sent{% endtrans %} | {% trans %}Clicks{% endtrans %} | {% trans %}First Opened{% endtrans %} |
|---|---|---|---|---|---|---|---|
|
{{ r.username }}
{{ r.email }}
|
{{ r.country or '—' }} | {{ r.plan_name or '—' }} | {% if r.email_sent %} {% else %} — {% endif %} | {% if r.email_open_count > 0 %} {{ r.email_open_count }} {% else %} 0 {% endif %} | {% if r.push_sent %} {% else %} — {% endif %} | {% if r.push_click_count > 0 %} {{ r.push_click_count }} {% else %} 0 {% endif %} | {{ r.email_opened_at[:16] if r.email_opened_at else '—' }} |
{% trans %}Resets all open and click counts for this broadcast to zero. The broadcast record itself is kept.{% endtrans %}