{% extends 'base.html' %} {% load wagtailcore_tags core_tags wagtailimages_tags static %} {% wagtail_site as current_site %} {% block content %} {% if page.your_words_competition %}

{% trans "Share your story" %}

{{ page.title }}

{{ page.introduction }}

{% for block in form.description %} {% if block.block_type == 'heading' %}
{{ block.value }}
{% elif block.block_type == 'paragraph' %}

{{ block.value }}

{% endif %} {% endfor %}
{% comment %} {% if fields_step and fields_step.paginator.num_pages > 1 %}
{% blocktrans with pages=fields_step.paginator.num_pages %}This competition has {{ pages }} pages{% endblocktrans %}
{% endif %} {% endcomment %} {% include "forms/form.html" with formtype="competition" formtypeClass="your-words" %}
{% elif page.display_form_directly %}

{% trans "What's your opinion?" %}

{{ page.title }}

{% if user.is_authenticated and user.is_active or request.is_preview or self.allow_anonymous_submissions %} {% if form %} {% include "forms/form.html" with formtype="poll" formtypeClass="polls" %} {% else %}

{% trans 'You have already completed this poll.' %}

{% if request.path == "/" %} {% trans "Show Results" %} {% else %} {% trans "Back home" %} {% endif %} {% endif %} {% endif %}
{% else %}

{{ page.title }}

{{ page.introduction }}

{% if fields_step and fields_step.paginator.num_pages > 1 %}
{% blocktrans with pages=fields_step.paginator.num_pages %}This survey has {{ pages }} pages{% endblocktrans %}
{% endif %} {% if user.is_authenticated and user.is_active or request.is_preview or self.allow_anonymous_submissions %} {% include "forms/form.html" with formtype="form" formtypeClass="surveys" %} {% else %}
{% trans 'Log in to take survey' %}
{% endif %}
{% endif %} {% endblock %}