mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-16 11:20:12 -04:00
24 lines
706 B
HTML
24 lines
706 B
HTML
{% from 'components/big-number.html' import big_number %}
|
|
{% from 'components/message-count-label.html' import message_count_label %}
|
|
|
|
<div class="govuk-grid-row bottom-gutter-2-3">
|
|
<div class="govuk-grid-column-one-half">
|
|
<div class="keyline-block">
|
|
{{ big_number(
|
|
job.notification_count,
|
|
message_count_label(job.notification_count, 'letter', suffix='')|capitalize,
|
|
smaller=True
|
|
)}}
|
|
</div>
|
|
</div>
|
|
<div class="govuk-grid-column-one-half">
|
|
<div class="keyline-block">
|
|
{{ big_number(
|
|
job.letter_timings.earliest_delivery|string|format_date_short,
|
|
'Estimated delivery date',
|
|
smaller=True
|
|
)}}
|
|
</div>
|
|
</div>
|
|
</div>
|