2016-03-17 11:45:48 +00:00
|
|
|
|
{% from "components/banner.html" import banner_wrapper %}
|
|
|
|
|
|
{% from "components/big-number.html" import big_number %}
|
|
|
|
|
|
|
|
|
|
|
|
{% call banner_wrapper(type="mode") %}
|
|
|
|
|
|
|
2016-03-17 14:56:52 +00:00
|
|
|
|
<h2 class="heading-medium">Trial mode</h2>
|
2016-03-17 11:45:48 +00:00
|
|
|
|
<div class="grid-row">
|
|
|
|
|
|
<div class="column-one-half">
|
|
|
|
|
|
<p>
|
|
|
|
|
|
We’ll only deliver messages to you and members of your team
|
2016-03-17 14:56:52 +00:00
|
|
|
|
<br>
|
|
|
|
|
|
<a href="{{ url_for(".help", _anchor="trial-mode") }}">Find out more</a>
|
2016-03-17 11:45:48 +00:00
|
|
|
|
</p>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="column-one-sixth">
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
<div class="column-one-third">
|
|
|
|
|
|
{{ big_number(
|
|
|
|
|
|
service.limit - statistics.get('emails_requested', 0) - statistics.get('sms_requested', 0),
|
|
|
|
|
|
'messages left today'
|
|
|
|
|
|
) }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{% endcall %}
|