diff --git a/app/assets/sass/uswds/_uswds-theme-custom-styles.scss b/app/assets/sass/uswds/_uswds-theme-custom-styles.scss index b5f2147cd..21d760659 100644 --- a/app/assets/sass/uswds/_uswds-theme-custom-styles.scss +++ b/app/assets/sass/uswds/_uswds-theme-custom-styles.scss @@ -378,28 +378,29 @@ td.table-empty-message { } .job-table { - .usa-table { - thead th.file-name { - width: 25%; - } - thead th.template { - width: 20%; - } - thead th.time-sent { - width: 30%; - } - thead th.sender { - width: 15%; - } - thead th.\#-of-recipients { - width: 5%; - } - thead th.report { - width: 5%; - } - th { - padding: 0.5rem 0.5rem; - } + width: 100%; + border-collapse: collapse; + td.file-name { + width: 25%; + overflow-wrap: anywhere; + } + td.template { + width: 20%; + } + td.time-sent { + width: 20%; + } + td.sender { + width: 15%; + } + td.count-of-recipients { + width: 5%; + } + td.report { + width: 5%; + } + th { + padding: 0.5rem 0.5rem; } } diff --git a/app/templates/views/dashboard/dashboard.html b/app/templates/views/dashboard/dashboard.html index b5ca04c42..133b0a720 100644 --- a/app/templates/views/dashboard/dashboard.html +++ b/app/templates/views/dashboard/dashboard.html @@ -33,22 +33,22 @@ - - - - - - @@ -59,24 +59,24 @@ {% if job.job_id and job.notifications %} {% set notification = job.notifications[0] %} - - - - - -
+ File name + Template + Time sent + Sender + # of Recipients + Report
+ {{ notification.job.original_file_name if notification.job.original_file_name else 'Manually entered number'}}
View Batch
+ {{ notification.template.name }} + {{ job.created_at | format_datetime_short_america }} + {{ notification.created_by.name }} + {{ job.notification_count}} + {% if notification and job.time_left != "Data no longer available" %} Download {{ job.time_left }}