{% extends "base.html" %} {% load i18n crispy_forms_tags %} {% block title %}{% blocktrans with date=event.start timezone=event.start|date:"e" %}Participate in Event at {{ date }} ({{ timezone }}){% endblocktrans %}{% endblock title %} {% block body %}form{% endblock body %} {% block content %}

{% blocktrans with date=event.start timezone=event.start|date:"e" %}Participate in Event at {{ date }} ({{ timezone }}){% endblocktrans %}

{% if event.is_full %}

{% trans "Sorry, this event is already full" %}

{% trans "Back" %} {% elif event.is_past %}

{% trans "Sorry, this event already happened" %}

{% trans "Back" %} {% else %} {% include "./_terms_modal.html" %}

{% trans "Please provide your E-Mail Address." %}
{% trans "You will receive an e-mail containing a link to join the event, before the event is starting" %}

{% csrf_token %} {{ form|crispy }} {% trans "Cancel" %}
{% endif %}
{% endblock content %} {% block extrafooter %} {% endblock extrafooter %}