+
+ {% if notifications %}
+
+ {% endif %}
+ {% call(item, row_number) list_table(
+ notifications,
+ caption="Batched Jobs",
+ caption_visible=False,
+ border_visible=True,
+ empty_message='No batched job messages found (messages are kept for {} days)'.format(limit_days)|safe,
+ field_headings=['Batched Job', 'Download (CSV) Report'],
+ field_headings_visible=False
+ ) %}
+ {% if item.job.original_file_name %}
+ {% call row_heading() %}
+
{{ item.job.original_file_name|replace('.csv', '') if item.job.id else '' }}
+ {% endcall %}
+ {% call row_heading() %}
+
{{ "Download Report" if item.job.original_file_name else '' }}
+
- available for {{ limit_days }} days
+ {% endcall %}
+ {% endif %}
+ {% endcall %}
+ {% if notifications %}
+
+ {% endif %}
+ {% if show_pagination %}
+ {{ previous_next_navigation(prev_page, next_page) }}
+ {% elif next_page %}
+
+ Only showing the first 50 messages
+
+ {% endif %}
+
+
{% if notifications %}
{% endif %}