{% 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 %}

All activity

All activity

Sent jobs

{% if all_jobs_dict %} {% for job in all_jobs_dict %} {% endfor %} {% else %} {% endif %}
Table showing all sent jobs for this service
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 %} Download report link {% else %} N/A {% endif %} {{ job.delivered_count if job.delivered_count is not none else '0' }} {{ job.failed_count if job.failed_count is not none else '0' }}
No messages found

Note: Report data is only available for 7 days after your message has been sent

{{show_pagination}} {% if current_user.has_permissions(ServicePermission.VIEW_ACTIVITY) %} {% if has_any_download_data %}

Download recent reports

{% if has_1_day_data %}

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 %}

Download recent reports

No recent activity to download. Download links will appear when jobs are available.

{% endif %} {% endif %}
{% endblock %}