Files
notifications-admin/app/templates/partials/check/message-too-long.html
T

14 lines
380 B
HTML
Raw Normal View History

{% 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>
2019-09-12 16:51:49 +01:00
Text messages cannot be longer than {{ SMS_CHAR_COUNT_LIMIT }} characters.
2017-06-29 15:33:31 +01:00
Your message is {{ template.content_count }} characters.
</p>
{% endcall %}
</div>