diff --git a/app/formatters.py b/app/formatters.py index c427c2a9a..ed28320c4 100644 --- a/app/formatters.py +++ b/app/formatters.py @@ -111,8 +111,8 @@ def format_datetime_scheduled_notification(date): def format_datetime_table(date): - # example: 03-18-2024 at 04:53 PM, intended for datetimes in tables - return "{} at {}".format(format_date_numeric(date), format_time_12h(date)) + # example: Sent on 03-18-2024 at 04:53 PM, intended for datetimes in tables + return "Sent on {} at {}".format(format_date_numeric(date), format_time_12h(date)) def format_time_12h(date): diff --git a/app/templates/views/dashboard/dashboard.html b/app/templates/views/dashboard/dashboard.html index 4a4bf93ca..ebb53d008 100644 --- a/app/templates/views/dashboard/dashboard.html +++ b/app/templates/views/dashboard/dashboard.html @@ -64,11 +64,11 @@ - - - - - + + + + + @@ -77,10 +77,10 @@ {% if job.created_by.name == current_user.name %} {% set notification = job.notifications[0] %} - @@ -113,12 +112,12 @@
File nameTemplateJob status# of RecipientsReportJob ID#TemplateJob status# of RecipientsReport
- {{ job.original_file_name[:12] if job.original_file_name else 'Manually entered number'}} -
- View Batch +
+ + {{ job.job_id[:8] if job.job_id else 'Manually entered number' }} + {{ job.template_name }} @@ -90,10 +90,9 @@ {{ job.notification_count }} {% if job.time_left != "Data no longer available" %} - Download - {{ job.time_left }} + File Download Icon {% elif job %} - {{ job.time_left }} + N/A {% endif %}
- - - - - - + + + + + + @@ -126,10 +125,10 @@ {% for job in jobs[:5] %} {% set notification = job.notifications[0] %} -
File nameTemplateJob statusSender# of RecipientsReportJob ID#TemplateJob statusSender# of RecipientsReport
- {{ job.original_file_name[:12] if job.original_file_name else 'Manually entered number'}} -
- View Batch +
+ + {{ job.job_id[:8] if job.job_id else 'Manually entered number' }} + {{ job.template_name }} @@ -155,6 +154,7 @@ {% endif %}
+

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

{{ ajax_block(partials, updates_url, 'template-statistics') }}