{% extends 'base.html' %} {% load wagtailcore_tags wagtailimages_tags static molo_forms_tags %} {% wagtail_site as current_site %} {% block content %} {% if self.your_words_competition %}
{% elif self.display_form_directly %}
{% else %}
{% endif %} {% if self.your_words_competition %}

{% trans "Share your story" %}

{% trans 'Thank you!' %}

{% if self.thank_you_text %} {{ self.thank_you_text|url_to_anchor|safe }} {% else %} {% trans "Thanks for submitting your story! You’ll find out soon if you’re a winner!" %} {% endif %}

{% elif self.display_form_directly %}

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

{% if self.show_results and results %} {% for question, answers in results.items %}

{{ question }}

{% for answer, count in answers.items %}

{{ answer }} {% if self.show_results_as_percentage %} {{ count }}% {% else %} {{ count }} vote{{ count|pluralize }} {% endif %}

{% endfor %} {% endfor %} {% else %}

{{ self.title }}

{% if self.thank_you_text %}

{{ self.thank_you_text|url_to_anchor|safe }}

{% else %}

{% trans "Thank you for submitting poll!" %}

{% endif %}
{% endif %}
{% elif self.article_form_only or self.contact_form %}

{{self.title}}

{% if self.thank_you_text %} {{ self.thank_you_text|url_to_anchor|safe }} {% else %} {% trans "Thank you for submitting the form." %} {% endif %}

{% if self.show_results and results %}

{% trans "The form has been completed successfully." %}

{% endif %} {% else %}

{% trans "Survey Results" %}

{% if self.thank_you_text %} {{ self.thank_you_text|url_to_anchor|safe }} {% else %} {% trans "Thank you for submitting survey!" %} {% endif %}

{% if self.show_results and results %}

{% trans "Your survey has been completed successfully." %}

{% endif %} {% endif %} {% if self.your_words_competition %}
{% elif self.display_form_directly %}
{% else %}
{% endif %} {% endblock %}