Files
notifications-admin/app/templates/partials/check/message-too-long.html
2019-09-23 13:20:25 +01:00

14 lines
380 B
HTML

{% from "components/banner.html" import banner_wrapper %}
<div class="bottom-gutter">
{% call banner_wrapper(type='dangerous') %}
<h1 class='banner-title'>
Message too long
</h1>
<p>
Text messages cannot be longer than {{ SMS_CHAR_COUNT_LIMIT }} characters.
Your message is {{ template.content_count }} characters.
</p>
{% endcall %}
</div>