{% extends "withnav_template.html" %} {% block service_page_title %} All activity {% endblock %} {% set show_pagination %} {% if prev_page or next_page %} {% if pagination and total_jobs %}

Page {{ pagination.current }} of {{ pagination.last }} ({{ total_jobs }} total jobs)

{% endif %} {% 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 Status
{{ 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' }} delivered {{ job.failed_count if job.failed_count is not none else '0' }} failed
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) %}

Download recent reports

Reports are automatically generated daily at midnight and include data through the previous day. Today's activity will appear in tomorrow's report.

{% if report_1_day.available %} Yesterday  - {{ report_1_day.size }} {% else %} {% endif %}
{% if report_3_day.available %} Last 3 days - {{ report_3_day.size }} {% else %} {% endif %}
{% if report_5_day.available %} Last 5 days - {{ report_5_day.size }} {% else %} {% endif %}
{% if report_7_day.available %} Last 7 days - {{ report_7_day.size }} {% else %} {% endif %}
{% endif %}
{% endblock %}