From 5f8a5edff0ed48b7a2ca2ab7d40679b151717d15 Mon Sep 17 00:00:00 2001 From: Chris Hill-Scott Date: Mon, 25 Apr 2016 10:48:52 +0100 Subject: [PATCH] =?UTF-8?q?Only=20talk=20about=20trial=20mode=20when=20you?= =?UTF-8?q?=E2=80=99re=20in=20it?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Services have a daily limit whether or not they’re in trial mode. So it only makes sense to tell you that the limit is because of trial mode when you are in it. --- app/templates/views/check.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app/templates/views/check.html b/app/templates/views/check.html index 106ad638c..3ceeb76c7 100644 --- a/app/templates/views/check.html +++ b/app/templates/views/check.html @@ -22,7 +22,11 @@ {% if statistics.emails_requested or statistics.sms_requested %}

You can only send {{ current_service.message_limit }} - messages per day in trial mode. + messages per day + {%- if current_service.restricted %} + in trial mode + {%- endif -%} + .

{% endif %}