{% extends "base.html" %} {% load wagtailcore_tags wagtailimages_tags static core_tags i18n competition_tag %} {% block content %}
{% if competition.thank_you_page.get_parent_page.get_effective_image %} {% image competition.thank_you_page.get_parent_page.get_effective_image width-98 as tmp_photo %} {{ self.get_parent_page.get_effective_image.title }} {% endif %} {% load_thank_you_page_for_competition competition as thank_you_pages %} {% if thank_you_pages %} {% for page in thank_you_pages %}

{{page.title}}

{% if page.subtitle %}

{{page.subtitle}}

{% endif %} {% if page.body %} {% for block in page.body %} {% if block.block_type == 'heading' %}

{{ block.value }}

{% else %} {% if block.block_type == 'image' %} {% image block.value width-240 %} {% else %} {% if block.block_type == 'numbered_list' %}
    {% for item in block.value %}
  1. {{ item|handle_markdown }}
  2. {% endfor %}
{% else %} {{ block }} {% endif %} {% endif %} {% endif %} {% endfor %} {% endif %} {% endfor %} {% else %}

{% trans 'Thank you!' %}

{% trans 'Thanks for submitting your story! You’ll find out soon if you’re a winner!' %}

{% endif %} {% trans "Home" %}
{% endblock %}