mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-17 13:09:49 -04:00
This follows the pattern of what we’ve done with services, users and events. It gives us a way of neatly instantiating a model for each item in the list we get back from the API and reduces the complexity of the view layer code. Now is a good time to do this because we’re going to be making a bunch of changes to the jobs pages, and those changes will be easier to code and understand with a sensible model behind them.
43 lines
1.4 KiB
HTML
43 lines
1.4 KiB
HTML
{% 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 %}
|
|
|
|
<div class="ajax-block-container">
|
|
{% if current_service.scheduled_jobs %}
|
|
<div class='dashboard-table'>
|
|
{% if not hide_heading %}
|
|
<h2 class="heading-medium heading-upcoming-jobs">
|
|
In the next few days
|
|
</h2>
|
|
{% endif %}
|
|
{% 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() %}
|
|
<div class="file-list">
|
|
<a class="file-list-filename" href="{{ url_for('.view_job', service_id=current_service.id, job_id=item.id) }}">{{ item.original_file_name }}</a>
|
|
<span class="file-list-hint">
|
|
Sending {{ item.scheduled_for|format_datetime_relative }}
|
|
</span>
|
|
</div>
|
|
{% endcall %}
|
|
{% call field() %}
|
|
{{ big_number(
|
|
item.notification_count,
|
|
smallest=True
|
|
) }}
|
|
{% endcall %}
|
|
{% endcall %}
|
|
{{ show_more() }}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|