diff --git a/app/main/views/jobs.py b/app/main/views/jobs.py index 663717350..367dfbb36 100644 --- a/app/main/views/jobs.py +++ b/app/main/views/jobs.py @@ -77,6 +77,11 @@ def view_job(service_id, job_id): counts=_get_job_counts(job), notifications=notifications, more_than_one_page=more_than_one_page, + uploaded_file_name=job.original_file_name, + time_left=get_time_left(job.created_at), + service_data_retention_days=current_service.get_days_of_retention( + job.template_type, number_of_days="seven_day" + ), download_link=( url_for( ".view_job_csv", diff --git a/app/templates/partials/jobs/notifications.html b/app/templates/partials/jobs/notifications.html index 46a9c1458..f787b6440 100644 --- a/app/templates/partials/jobs/notifications.html +++ b/app/templates/partials/jobs/notifications.html @@ -30,7 +30,7 @@

{% elif notifications and time_left != "Data no longer available" %}

- Download this report (CSV) + Download this report (CSV){{ time_left }}