From 95e613c3f928cd5fe6385aee9ad710aa88696706 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Tue, 23 May 2017 10:54:44 +0100 Subject: [PATCH] =?UTF-8?q?Clarify=20that=20big=20numbers=20mean=20?= =?UTF-8?q?=E2=80=98sent=E2=80=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Since we now have inbound and outbound messages we should be clear about which the counts refer to. --- app/templates/views/dashboard/_totals.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/templates/views/dashboard/_totals.html b/app/templates/views/dashboard/_totals.html index d1cb19821..281a66f7b 100644 --- a/app/templates/views/dashboard/_totals.html +++ b/app/templates/views/dashboard/_totals.html @@ -6,7 +6,7 @@
{{ big_number_with_status( statistics['email']['requested'], - message_count_label(statistics['email']['requested'], 'email', suffix=''), + message_count_label(statistics['email']['requested'], 'email', suffix='sent'), statistics['email']['failed'], statistics['email']['failed_percentage'], statistics['email']['show_warning'], @@ -17,7 +17,7 @@
{{ big_number_with_status( statistics['sms']['requested'], - message_count_label(statistics['sms']['requested'], 'sms', suffix=''), + message_count_label(statistics['sms']['requested'], 'sms', suffix='sent'), statistics['sms']['failed'], statistics['sms']['failed_percentage'], statistics['sms']['show_warning'],