{% extends "cfp/event/base.html" %} {% load compress %} {% load i18n %} {% load rich_text %} {% load static %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock %} {% block stylesheets %} {% compress css %} {% endcompress %} {% endblock %} {% block content %}

{% trans "Public voting" %}

{{ request.event.public_vote_settings.text|rich_text }} {% if filter_active %}

{% trans "A filter is active. Only limited subset of all submission is shown." %} {% trans "Click here to reset." %}

{% endif %} {% if hashed_email %}
{% csrf_token %} {% for submission in submissions %}
{% if submission.image and request.event.public_vote_settings.show_session_image %}
{% trans
{% endif %}

{{ submission.title }}

{% if not request.event.public_vote_settings.anonymize_speakers %}

{{ submission.display_speaker_names }}

{% endif %}
{{ submission.abstract|rich_text|default:'-' }} {% if request.event.public_vote_settings.show_session_description and submission.description %} {{ submission.description|rich_text|default:'-' }} {% endif %}
{% empty %}

No submissions yet.

{% endfor %} {% include "orga/includes/pagination.html" %}
Saving… Saved!
{% else %}

{% blocktrans trimmed %} This page is invalid. Please double-check that you have followed a complete link to this place. {% endblocktrans %} {% trans "Click here to sign up for voting." %}

{% endif %} {% endblock %}