{% extends 'events/display/conference/base.html' if event.type == 'conference' else 'layout/meeting_page_base.html' %} {% block title %} {{- page_title|default('') -}} {% endblock %} {% block content %} {% for survey in surveys %} {% else %} {% endfor %}
{% trans %}Survey{% endtrans %} {% trans %}Available from{% endtrans %} {% trans %}Deadline{% endtrans %}
{% if event.can_manage(session.user, 'surveys') %} {{ survey.title }} {% else %} {{ survey.title }} {% endif %} {{ survey.start_dt | format_datetime(timezone=event.display_tzinfo) if survey.start_dt else _('Not started') }} {{ survey.end_dt | format_datetime(timezone=event.display_tzinfo) if survey.end_dt else _('No deadline') }} {% if was_survey_submitted(survey) %} {% elif not survey.is_active %} {% elif is_submission_in_progress(survey) %} {%- trans %}Continue{% endtrans -%} {% else %} {%- trans %}Fill out{% endtrans -%} {% endif %}
{%- trans %}No surveys available for this event{% endtrans -%}
{% if event.type != 'conference' %}

{%- trans %}Back to the event{% endtrans -%}

{% endif %} {% endblock %}