Show error banner for one off letter in trial mode

In trial mode you can’t send letters. But it’s still useful to be able
to build up a letter to see how it work.

Best place to put this error is before someone tries to send a letter
for real.
This commit is contained in:
Chris Hill-Scott
2018-10-30 16:32:10 +00:00
parent a79dfd1d6e
commit 1675e6c8d2
4 changed files with 81 additions and 11 deletions

View File

@@ -7,7 +7,18 @@
{% endblock %}
{% block maincolumn_content %}
{% if error == 'not-allowed-to-send-to' %}
{% if template.template_type == 'letter' and current_service.trial_mode %}
{% set error = 'trial-mode-letters' %}
<div class="bottom-gutter">
{% with
count_of_recipients=1
%}
{% call banner_wrapper(type='dangerous') %}
{% include "partials/check/trying-to-send-letters-in-trial-mode.html" %}
{% endcall %}
{% endwith %}
</div>
{% elif error == 'not-allowed-to-send-to' %}
<div class="bottom-gutter">
{% call banner_wrapper(type='dangerous') %}
{% with