{% extends 'base.html' %} {% load bootstrap3 i18n %} {% block talktab %} class="active"{% endblock %} {% block content %}

{% trans "Talks" %}

{% trans "Show filtering options…" %}

{% bootstrap_field filter_form.status layout="horizontal" %} {% bootstrap_field filter_form.vote layout="horizontal" %} {% bootstrap_field filter_form.kind layout="horizontal" %}
{% bootstrap_field filter_form.topic layout="horizontal" %}
{% bootstrap_field filter_form.track layout="horizontal" %}
{% for talk in talk_list %} {% if forloop.first %} {% endif %} {% if forloop.last%} {% endif %} {% endfor %}
{% trans "Title" %} {% trans "Intervention kind" %} {% trans "Speakers" %} {% trans "Topics" %} {% trans "Track" %} {% trans "Status" %}
{{ talk.title }} {{ talk.event }} {% for speaker in talk.speakers.all %} {{ speaker }} {% if forloop.revcounter == 2 %} {% trans "and" %} {% elif not forloop.last %}, {% endif %} {% empty %}– {% endfor %} {% for topic in talk.topics.all %} {{ topic }} {% endfor %} {{ talk.track|default:"–" }} {% if talk.accepted == True %} {% trans "Accepted" %} {% elif talk.accepted == False %} {% trans "Declined" %} {% else %} {% blocktrans with score=talk.score|floatformat:1 %}Pending, score: {{ score }}{% endblocktrans %} {% endif %}
{% trans "Total:" %} {{ talk_list|length }} {% trans "talk" %}{{ talk_list|length|pluralize }}
{% endblock %} {% block js_end %} {% endblock %}