{% extends 'cfp/staff/base.html' %} {% load bootstrap3 i18n %} {% block talkstab %} class="active"{% endblock %} {% block content %}

{% trans "Talks" %}

{% comment %}{% endcomment %} {% for talk in talk_list %} {% if forloop.first %} {% endif %} {% comment %}{% endcomment %} {% if forloop.last%} {% endif %} {% endfor %}
{% trans "Total:" %} {{ talk_list|length }} {% trans "talk" %}{{ talk_list|length|pluralize }}
{% trans "Title" %} {% trans "Intervention kind" %} {% trans "Speakers" %} {% trans "Track" %} {% trans "Status" %}
{{ talk.title }} {{ talk.category }} {% for participant in talk.speakers.all %} {{ participant }} {% if forloop.revcounter == 2 %} {% trans "and" %} {% elif not forloop.last %}, {% endif %} {% empty %}– {% 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 %}
{% endblock %}