Files
notifications-admin/app/templates/views/dashboard/_jobs.html
T

38 lines
1.3 KiB
HTML
Raw Normal View History

2016-06-08 13:41:02 +01:00
{% from "components/table.html" import list_table, field, right_aligned_field_heading, row_heading %}
2016-05-25 13:36:35 +01:00
{% from "components/big-number.html" import big_number %}
2016-06-09 15:52:10 +01:00
<div class='dashboard-table'>
{% call(item, row_number) list_table(
jobs,
caption="Recent batch jobs",
caption_visible=False,
empty_message='You havent sent any batch messages yet',
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>
<span class="file-list-hint">Uploaded {{ 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(
item.get('notifications_sent', 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>