2016-09-01 11:06:52 +01:00
< div class = "ajax-block-container" >
2017-06-24 17:12:45 +01:00
< p class = 'bottom-gutter' >
2016-10-12 09:23:59 +01:00
{% if job.scheduled_for %}
{% if job.processing_started %}
Sent by {{ job.created_by.name }} on {{ job.processing_started|format_datetime_short }}
2020-01-08 12:23:09 +00:00
{% if job.template.template_type == "letter" %}
2020-05-29 17:11:01 +01:00
< p class = "govuk-body" id = "printing-info" >
2019-06-18 18:00:36 +01:00
{{ letter_print_day }}
< / p >
{% endif %}
2016-10-12 09:23:59 +01:00
{% else %}
Uploaded by {{ job.created_by.name }} on {{ job.created_at|format_datetime_short }}
{% endif %}
2021-07-05 14:13:20 +01:00
{% else %}
2016-10-12 09:23:59 +01:00
Sent by {{ job.created_by.name }} on {{ job.created_at|format_datetime_short }}
2020-01-08 12:23:09 +00:00
{% if job.template.template_type == "letter" %}
2020-05-29 17:11:01 +01:00
< p class = "govuk-body" id = "printing-info" >
2019-06-18 18:00:36 +01:00
{{ letter_print_day }}
< / p >
{% endif %}
2016-10-12 09:23:59 +01:00
{% endif %}
2016-06-28 09:21:46 +01:00
< / p >
2021-07-05 14:13:20 +01:00
{% if job.status == 'sending limits exceeded'%}
2021-07-14 09:54:28 +01:00
< p class = "govuk-error-message" >
Notify cannot send these messages because you have reached your daily limit. You can only send {{ current_service.message_limit|format_thousands }} messages per day.
< / p >
< p class = "govuk-error-message govuk-!-margin-bottom-6" >
Upload this spreadsheet again tomorrow or < a class = "govuk-link" href = "https://www.notifications.service.gov.uk/support" > contact the GOV.UK Notify team< / a > to raise the limit.
2021-07-05 14:13:20 +01:00
< / p >
{% endif %}
2016-06-28 09:21:46 +01:00
< / div >