{% block greeting %}
{{ greeting ?: (level == 'error' ? 'Whoops!' : 'Hello!') }}
{% endblock %}
{% block intro %}
{% for line in introLines %}
{% autoescape 'js' %}
{{ line|raw }}
{% endautoescape %}
{% endfor %}
{% endblock %}
{% block action %}
{% if actionText %}
{% endif %}
{% endblock %}
{% block outro %}
{% for line in outroLines %}
{% autoescape 'js' %}
{{ line|raw }}
{% endautoescape %}
{% endfor %}
{% endblock %}
{% block salutation %}
{{ trans('visiosoft.module.notifications::field.regards') }}, {{ setting_value('streams::name','Visiosoft LTD.') }}
{% endblock %}
{% block subcopy %}
{% if actionText is defined %}
If you’re having trouble clicking the "{{ actionText }}" button, copy and paste the URL below into your web browser:
{{ actionUrl }}
|
{% endif %}
{% endblock %}
|