{% extends "agenda/base.html" %} {% load compress %} {% load i18n %} {% load static %} {% block agenda_content %}

{% trans "Welcome to our schedule sneak peek!" %}

{% if talks %} {% blocktrans trimmed %} We prepared a list of exciting talks, so you can get a feel for our conference. Please keep in mind that this is not our full schedule. We will follow up with the full schedule in time, stay tuned! {% endblocktrans %} {% else %} {% blocktrans trimmed %} In the near future you will see a curated list of talks we'd like to show off here. Right now we are busy reviewing submissions.
Check back later! {% endblocktrans %} {% endif %}

{% for talk in talks %}

{{ quotation_open }}{{ talk.title }}{{ quotation_close }}
{{ talk.display_speaker_names }}; {{ talk.submission_type.name }}

{{ talk.abstract|default:talk.description|default:"" }}

{% if not forloop.last %}
{% endif %}
{% endfor %}
{% endblock %}