{% load wagtailimages_tags %} {% block content %}
{% if self.image %}
{% image self.image width-98 as tmp_photo_small %} {% image self.image width-320 as tmp_photo_large %} {{ form.image.title }}
{% else %}
{% endif %}

{{self.title}}

{% if self.introduction %}

{{self.introduction}}

{% endif %} {% if user.is_authenticated and user.is_active or request.is_preview or self.allow_anonymous_submissions %} {% include "forms/form_modules/form.html" %} {% else %}
{% trans "Log in to take competition" %}
{% endif %}
{% endblock %}