diff --git a/app/templates/views/dashboard/_totals.html b/app/templates/views/dashboard/_totals.html index b7508aec1..d1cb19821 100644 --- a/app/templates/views/dashboard/_totals.html +++ b/app/templates/views/dashboard/_totals.html @@ -1,27 +1,29 @@ {% from "components/big-number.html" import big_number_with_status %} {% from "components/message-count-label.html" import message_count_label %} -
-
- {{ big_number_with_status( - statistics['email']['requested'], - message_count_label(statistics['email']['requested'], 'email', suffix=''), - statistics['email']['failed'], - statistics['email']['failed_percentage'], - statistics['email']['show_warning'], - failure_link=url_for(".view_notifications", service_id=service_id, message_type='email', status='failed'), - link=url_for(".view_notifications", service_id=service_id, message_type='email', status='sending,delivered,failed') - ) }} -
-
- {{ big_number_with_status( - statistics['sms']['requested'], - message_count_label(statistics['sms']['requested'], 'sms', suffix=''), - statistics['sms']['failed'], - statistics['sms']['failed_percentage'], - statistics['sms']['show_warning'], - failure_link=url_for(".view_notifications", service_id=service_id, message_type='sms', status='failed'), - link=url_for(".view_notifications", service_id=service_id, message_type='sms', status='sending,delivered,failed') - ) }} +
+
+
+ {{ big_number_with_status( + statistics['email']['requested'], + message_count_label(statistics['email']['requested'], 'email', suffix=''), + statistics['email']['failed'], + statistics['email']['failed_percentage'], + statistics['email']['show_warning'], + failure_link=url_for(".view_notifications", service_id=service_id, message_type='email', status='failed'), + link=url_for(".view_notifications", service_id=service_id, message_type='email', status='sending,delivered,failed') + ) }} +
+
+ {{ big_number_with_status( + statistics['sms']['requested'], + message_count_label(statistics['sms']['requested'], 'sms', suffix=''), + statistics['sms']['failed'], + statistics['sms']['failed_percentage'], + statistics['sms']['show_warning'], + failure_link=url_for(".view_notifications", service_id=service_id, message_type='sms', status='failed'), + link=url_for(".view_notifications", service_id=service_id, message_type='sms', status='sending,delivered,failed') + ) }} +