diff --git a/app/templates/views/dashboard/dashboard.html b/app/templates/views/dashboard/dashboard.html index eeca2b213..1db058718 100644 --- a/app/templates/views/dashboard/dashboard.html +++ b/app/templates/views/dashboard/dashboard.html @@ -59,34 +59,72 @@ {% if current_user.has_permissions('manage_service') %}{% endif %} {{ ajax_block(partials, updates_url, 'template-statistics') }} -

Recent Batches

-
- - - - - - - - - - - - - {% if jobs %} - {% for job in jobs[:5] %} +
+
+

My Activity

+
- File name - - Template - - Job status - - Sender - - # of Recipients - - Report -
+ + + + + + + + + + + {% if jobs %} + {% for job in jobs[:5] %} + {% if job.created_by.name == current_user.name %} + {% set notification = job.notifications[0] %} + + + + + + + + {% endif %} + {% endfor %} + {% else %} + + + + {% endif %} + +
File nameTemplateJob status# of RecipientsReport
+ {{ job.original_file_name[:12] if job.original_file_name else 'Manually entered number'}} +
+ View Batch +
{{ 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.notification_count }} + {% if job.time_left != "Data no longer available" %} + Download + {{ job.time_left }} + {% elif job %} + {{ job.time_left }} + {% endif %} +
No batched job messages found  (messages are kept for {{ service_data_retention_days }} days).
+
+ +

Recent templates