{% load i18n cms_tags sekizai_tags apphooks_config_tags bootstrap3 %}
{% static_placeholder "events_registration_title" %} {# INFO: shown when registration is closed #} {% if event.is_registration_deadline_passed %}

{% trans "The registration deadline for this event has passed, registration is closed." %}

{% endif %} {# INFO: shown when successfully registered #} {% if already_registered and not event.is_registration_deadline_passed %}

{% trans "Thank you for your registration!" %}

{% csrf_token %}
{% endif %} {# INFO: shown when registration is open #} {% if not already_registered and not event.is_registration_deadline_passed %}
{% csrf_token %} {% bootstrap_form_errors form %}
{% bootstrap_field form.salutation %}
{% bootstrap_field form.first_name %}
{% bootstrap_field form.last_name %}
{% bootstrap_field form.company %}
{% bootstrap_field form.email %}
{% bootstrap_field form.address %}
{% bootstrap_field form.address_zip %}
{% bootstrap_field form.address_city %}
{% bootstrap_field form.phone %}
{% bootstrap_field form.mobile %}
{% bootstrap_field form.message %}
{% buttons %} {% endbuttons %}
{% endif %}