Clarify that big numbers mean ‘sent’

Since we now have inbound and outbound messages we should be clear about
which the counts refer to.
This commit is contained in:
Chris Hill-Scott
2017-05-23 10:54:44 +01:00
parent e373296bd9
commit 95e613c3f9

View File

@@ -6,7 +6,7 @@
<div id="total-email" class="column-half">
{{ 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 @@
<div id="total-sms" class="column-half">
{{ 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'],