{% extends "cfp/event/base.html" %} {% load bootstrap4 %} {% load i18n %} {% load rich_text %} {% load static %} {% block content %}

{% trans "Public voting" %}

{{ request.event.public_vote_settings.text|rich_text }} {% 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:'-' }}
{% empty %}

No submissions yet.

{% endfor %} {% include "orga/pagination.html" %}
{% 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 %}