{% extends "base.html" %} {% load wagtailimages_tags wagtailcore_tags static core_tags gem_tags molo_forms_tags %} {% wagtail_site as current_site %} {% block content %}
{% if self.introduction %}

{{self.introduction|smarttruncatechars:500|safe}}

{% endif %} {% if page.thank_you_text %}

{{ page.thank_you_text|url_to_anchor|safe }}

{% else %}

{% trans "Thank you, your email has been sent successfully" %}.

{% endif %}
{% if self.description %}
{% for block in self.description %} {% if forloop.counter %} {% if block.block_type == 'heading' %}

{{ block.value }}

{% else %} {{ block }} {% endif %} {% endif %} {% endfor %}
{% endif %}
{% endblock %}