2016-06-08 13:41:02 +01:00
|
|
|
|
{% from "components/table.html" import list_table, field, right_aligned_field_heading, row_heading %}
|
2016-06-28 09:07:04 +01:00
|
|
|
|
{% from "components/big-number.html" import big_number -%}
|
2016-05-25 13:36:35 +01:00
|
|
|
|
|
2016-09-01 11:06:52 +01:00
|
|
|
|
<div class='dashboard-table ajax-block-container'>
|
2016-06-09 15:52:10 +01:00
|
|
|
|
{% call(item, row_number) list_table(
|
|
|
|
|
|
jobs,
|
2016-06-28 09:07:04 +01:00
|
|
|
|
caption="Recent files uploaded",
|
2016-06-09 15:52:10 +01:00
|
|
|
|
caption_visible=False,
|
2016-06-28 09:07:04 +01:00
|
|
|
|
empty_message='You haven’t uploaded any files recently',
|
2016-06-09 15:52:10 +01:00
|
|
|
|
field_headings=[
|
|
|
|
|
|
'File',
|
|
|
|
|
|
'Sending',
|
|
|
|
|
|
'Delivered',
|
|
|
|
|
|
'Failed'
|
|
|
|
|
|
],
|
|
|
|
|
|
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>
|
2016-08-09 10:39:57 +01:00
|
|
|
|
<span class="file-list-hint">
|
|
|
|
|
|
Sent {{
|
|
|
|
|
|
item.scheduled_for|format_datetime_short if item.scheduled_for else item.created_at|format_datetime_short
|
|
|
|
|
|
}}
|
|
|
|
|
|
</span>
|
2016-06-14 16:47:22 +01:00
|
|
|
|
</div>
|
2016-06-09 15:52:10 +01:00
|
|
|
|
{% endcall %}
|
|
|
|
|
|
{% call field() %}
|
|
|
|
|
|
{{ big_number(
|
2016-08-01 09:54:30 +01:00
|
|
|
|
item.get('notification_count', 0) - item.get('notifications_delivered', 0) - item.get('notifications_failed', 0),
|
2016-06-09 16:39:25 +01:00
|
|
|
|
smallest=True
|
2016-06-09 15:52:10 +01:00
|
|
|
|
) }}
|
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
{% call field() %}
|
2016-06-09 16:39:25 +01:00
|
|
|
|
{{ big_number(item.get('notifications_delivered', 0), smallest=True) }}
|
2016-06-09 15:52:10 +01:00
|
|
|
|
{% endcall %}
|
2016-06-14 16:47:22 +01:00
|
|
|
|
{% call field(status='error' if item.get('failure_rate', 0) > 3 else '') %}
|
2016-06-09 16:39:25 +01:00
|
|
|
|
{{ big_number(item.get('notifications_failed', 0), smallest=True) }}
|
2016-06-09 15:52:10 +01:00
|
|
|
|
{% endcall %}
|
2016-05-25 13:36:35 +01:00
|
|
|
|
{% endcall %}
|
2016-06-09 15:52:10 +01:00
|
|
|
|
</div>
|