2016-07-21 13:47:18 +01:00
|
|
|
|
<div class="bottom-gutter">
|
|
|
|
|
|
{% call banner_wrapper(type='dangerous') %}
|
|
|
|
|
|
<h1 class='banner-title'>
|
|
|
|
|
|
Too many recipients
|
|
|
|
|
|
</h1>
|
|
|
|
|
|
<p>
|
2016-07-21 13:48:10 +01:00
|
|
|
|
You can only send {{ current_service.message_limit }} messages per day
|
|
|
|
|
|
{%- if current_service.restricted %}
|
|
|
|
|
|
in <a href="{{ url_for('.trial_mode')}}">trial mode</a>
|
|
|
|
|
|
{%- endif -%}
|
|
|
|
|
|
.
|
|
|
|
|
|
</p>
|
|
|
|
|
|
<p>
|
|
|
|
|
|
{% if statistics.emails_requested or statistics.sms_requested %}
|
|
|
|
|
|
You can still send
|
|
|
|
|
|
{{ current_service.message_limit - statistics.get('emails_requested', 0) - statistics.get('sms_requested', 0) }}
|
|
|
|
|
|
messages today, but
|
|
|
|
|
|
{% endif %}
|
2016-07-21 13:47:18 +01:00
|
|
|
|
‘{{ original_file_name }}’ contains
|
|
|
|
|
|
{{ count_of_recipients }} {{ recipients.recipient_column_header }}
|
|
|
|
|
|
{%- if count_of_recipients != 1 -%}
|
|
|
|
|
|
{{ 'es' if 'email address' == recipients.recipient_column_header else 's' }}
|
2016-07-21 13:48:10 +01:00
|
|
|
|
{%- endif %}.
|
2016-07-21 13:47:18 +01:00
|
|
|
|
</p>
|
|
|
|
|
|
{% endcall %}
|
|
|
|
|
|
</div>
|