{% 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 Time sent Sender Report Delivered Failed
{{ job.job_id[:8] if job.job_id else 'Manually entered number' }} {{ job.template_name }} {{ (job.processing_finished if job.processing_finished else job.processing_started if job.processing_started else job.created_at)|format_datetime_table }} {{ job.created_by.name }} {% if job.time_left != "Data no longer available" %} 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('view_activity') %}

Download recent reports

Download all data last 24 hours (CSV)

Download all data last 3 days (CSV)

Download all data last 5 days (CSV)

Download all data last 7 days (CSV)

{% endif %}
{% endblock %}