mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-22 08:58:46 -04:00
25 lines
832 B
HTML
25 lines
832 B
HTML
<div class="bottom-gutter">
|
||
{% call banner_wrapper(type='dangerous') %}
|
||
<h1 class='banner-title'>
|
||
Too many recipients
|
||
</h1>
|
||
<p>
|
||
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 current_service.message_limit != remaining_messages %}
|
||
You can still send {{ remaining_messages }} messages today, but
|
||
{% endif %}
|
||
‘{{ 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' }}
|
||
{%- endif %}.
|
||
</p>
|
||
{% endcall %}
|
||
</div>
|