{% extends "base.html" %} {% from "components/big-number.html" import big_number %} {% from "components/page-header.html" import page_header %} {% from "components/table.html" import field, list_table %} {% block per_page_title %} Performance data {% endblock %} {% block maincolumn_content %}
{{ page_header('Performance data') }}

Messages sent since May 2023

{{ total_notifications|format_billions }}
total
{{ big_number( email_notifications|format_billions, label=email_notifications|message_count_noun('email'), smallest=True, ) }}
{{ big_number( sms_notifications|format_billions, label=sms_notifications|message_count_noun('sms'), smallest=True, ) }}
{% call(item, row_number) list_table( notifications_by_type|reverse, caption='Messages sent since May 2023', caption_visible=False, field_headings=[ 'Date', 99|message_count_noun('email')|capitalize, 99|message_count_noun('sms')|capitalize, ], empty_message='No data to show' ) %} {% call field() %} {{ item.date | format_date_normal }} {% endcall %} {% call field() %} {{ item.emails|format_thousands }} {% endcall %} {% call field() %} {{ item.sms|format_thousands }} {% endcall %} {% endcall %}

Messages sent within 10 seconds

{{ big_number( '{:.2f}%'.format(average_percentage_under_10_seconds), label='on average', ) }}
{% call(item, row_number) list_table( processing_time | reverse, caption='Messages sent within 10 seconds', caption_visible=False, field_headings=[ 'Date', 'Percentage' ], empty_message='No data to show' ) %} {% call field() %} {{ item.date | format_date_normal }} {% endcall %} {% call field() %} {{ '{:.2f}%'.format(item.percentage_under_10_seconds) }} {% endcall %} {% endcall %}

Organizations using Notify

There are
{{ count_of_live_services_and_organizations.organizations|format_thousands }}
organizations
and
{{ count_of_live_services_and_organizations.services|format_thousands }}
services using Notify.
{% call(item, row_number) list_table( organizations_using_notify, caption='Organizations using Notify', caption_visible=False, field_headings=[ 'Organization', 'Number of live services' ], empty_message='No data to show' ) %} {% call field() %} {{ item.organization_name }} {% endcall %} {% call field() %} {{ item.count_of_live_services }} {% endcall %} {% endcall %}
{% endblock %}