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 @@
| File name | -Template | -Job status | -# of Recipients | -Report | +Job ID# | +Template | +Job status | +# of Recipients | +Report | ||
|---|---|---|---|---|---|---|---|---|---|---|---|
|
- {{ 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 name | -Template | -Job status | -Sender | -# of Recipients | -Report | +Job ID# | +Template | +Job status | +Sender | +# of Recipients | +Report |
|---|---|---|---|---|---|---|---|---|---|---|---|
|
- {{ 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') }}