{% extends "withnav_template.html" %} {% block service_page_title %} All activity {% endblock %} {% set show_pagination %} {% if prev_page or next_page %} {% endif %} {% endset %} {% block maincolumn_content %}
| Job ID# | Template | Started | Sender | Report | Delivered | Failed |
|---|---|---|---|---|---|---|
| {{ job.job_id[:8] if job.job_id else 'Manually entered number' }} | {{ job.template_name }} | {{ job.activity_time|format_datetime_table }} | {{ job.created_by.name }} |
{% if job.can_download %}
|
{{ job.delivered_count if job.delivered_count is not none else '0' }} | {{ job.failed_count if job.failed_count is not none else '0' }} |
Note: Report data is only available for 7 days after your message has been sent
Download all data last 24 hours (CSV)
{% endif %} {% if has_3_day_data %}Download all data last 3 days (CSV)
{% endif %} {% if has_5_day_data %}Download all data last 5 days (CSV)
{% endif %} {% if has_7_day_data %}Download all data last 7 days (CSV)
{% endif %} {% else %}No recent activity to download. Download links will appear when jobs are available.
{% endif %} {% endif %}