{% extends 'base.html' %} {% load wagtailcore_tags wagtailimages_tags molo_forms_tags %} {% wagtail_site as current_site %} {% block content %}

{% if self.your_words_competition %}{% trans 'Share your story' %}{% elif self.display_form_directly %}{% trans 'Vote' %}{% else %}{% trans 'Quiz' %}{% endif %}

{% if not self.display_form_directly %} {% if self.image %} {% endif %} {% endif %}
{% if self.show_results and results %}

{% if self.your_words_competition %} {% with wordSetting='GCN competition' %} {% blocktrans %}Your {{wordSetting}} has been completed successfully. See results{% endblocktrans %} {% endwith %} {% elif self.display_form_directly %} {% with wordSetting='poll' %} {% blocktrans %}Your {{wordSetting}} has been completed successfully. See results{% endblocktrans %} {% endwith %} {% else %} {% with wordSetting='survey' %} {% blocktrans %}Your {{wordSetting}} has been completed successfully. See results{% endblocktrans %} {% endwith %} {% endif %}

    {% for question, answers in results.items %} {% for answer, count in answers.items %}
  • {% if self.show_results_as_percentage %} {{answer}}

    {{ count }}%

    {% else %}

    {{answer}} - {{ count }} vote{{ count|pluralize }}

    {% endif %}
  • {% endfor %} {% endfor %}
{% else %} {% if self.thank_you_text %}

{% trans "Thank you" %}

{{self.thank_you_text|url_to_anchor|safe}}

{% else %}

{% if self.your_words_competition %} {% with wordSetting='GCN competition' %} {% if self.your_words_competition %} {% blocktrans %}Your {{wordSetting}} has been completed successfully!{% endblocktrans %} {% else %} {% blocktrans %}Thank you for submitting this {{wordSetting}}!{% endblocktrans %} {% endif %} {% endwith %} {% elif self.display_form_directly %} {% with wordSetting='poll' %} {% if self.your_words_competition %} {% blocktrans %}Your {{wordSetting}} has been completed successfully!{% endblocktrans %} {% else %} {% blocktrans %}Thank you for submitting this {{wordSetting}}!{% endblocktrans %} {% endif %} {% endwith %} {% else %} {% with wordSetting='survey' %} {% if self.your_words_competition %} {% blocktrans %}Your {{wordSetting}} has been completed successfully!{% endblocktrans %} {% else %} {% blocktrans %}Thank you for submitting this {{wordSetting}}!{% endblocktrans %} {% endif %} {% endwith %} {% endif %}

{% endif %} {% endif %}
{% endblock %}