{% 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 scheduled_jobs %}
{% if not hide_heading %}

In the next few days

{% endif %} {% call(item, row_number) list_table( 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 %} {{ show_more() }}
{% endif %}