{% extends "challenge.html" %} {% load crispy_forms_tags %} {% load clean from bleach %} {% block content %}

Join {{ challenge.short_name }}

{{ challenge.registration_page_text|clean }}

{% if existing_status %}

{{ existing_status }}.

{% elif user_is_participant %}

You are already participating in {{ challenge.short_name }}.

{% else %}
{% csrf_token %} {{ form | crispy }}
{% endif %} {% endblock %}