From ab8a68ccd14c47a3dd7778cfc89d23cc684a788c Mon Sep 17 00:00:00 2001 From: Tom Byers Date: Thu, 24 Dec 2020 16:38:17 +0000 Subject: [PATCH] Remove jobs/_scheduled.html template From what I can determine, the last include for this template was removed in: https://github.com/alphagov/notifications-admin/pull/3338 This assumes that it should have been removed then so removes it now. --- app/templates/views/jobs/_scheduled.html | 34 ------------------------ 1 file changed, 34 deletions(-) delete mode 100644 app/templates/views/jobs/_scheduled.html diff --git a/app/templates/views/jobs/_scheduled.html b/app/templates/views/jobs/_scheduled.html deleted file mode 100644 index edd6e4ef5..000000000 --- a/app/templates/views/jobs/_scheduled.html +++ /dev/null @@ -1,34 +0,0 @@ -{% from "components/table.html" import list_table, field, right_aligned_field_heading, row_heading %} -{% from "components/big-number.html" import big_number %} -{% from "components/show-more.html" import show_more %} - -{% if current_service.scheduled_jobs %} -
- {% call(item, row_number) list_table( - current_service.scheduled_jobs, - caption="In the next few days", - caption_visible=False, - empty_message='Nothing to see here', - field_headings=[ - 'File', - 'Messages to be sent' - ], - field_headings_visible=True - ) %} - {% call row_heading() %} -
- {{ item.original_file_name }} - - Sending {{ item.scheduled_for|format_datetime_relative }} - -
- {% endcall %} - {% call field() %} - {{ big_number( - item.notification_count, - smallest=True - ) }} - {% endcall %} - {% endcall %} -
-{% endif %}