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

{% trans "Speakers" %}

{% trans "Show filtering options…" %}

{% bootstrap_field filter_form.transport layout="horizontal" %} {% bootstrap_field filter_form.hosting layout="horizontal" %}
{% bootstrap_field filter_form.sound layout="horizontal" %} {% bootstrap_field filter_form.status layout="horizontal" %}
{% bootstrap_field filter_form.topic layout="horizontal" %}
{% for speaker in speaker_list %} {% if forloop.first %} {% endif %} {% if speaker.need_transport %} {% else %} {% endif %} {% if speaker.need_hosting %} {% else %} {% endif %} {% if speaker.sound %} {% else %} {% endif %} {% if forloop.last %} {% endif %} {% endfor %}
{% trans "Username" %} {% trans "Fullname" %} {% trans "Talk count" %} {% blocktrans context "table column title" %}Need transport?{% endblocktrans %} {% blocktrans context "table column title" %}Need hosting?{% endblocktrans %} {% trans "Need sound?" %}
{{ speaker.user.username }} {{ speaker.user.get_full_name }} {{ speaker.talk_set.count }} {% for transport in speaker.transport.all %} {% if not forloop.first %}, {% endif %} {{ transport }} {% endfor %} {% if speaker.homestay %} Logement chez habitant {% else %} Hotel {% endif %} YesNo {% trans "Contact" %}
{% trans "Total:" %} {{ speaker_list|length }} {% trans "speaker" %}{{ speaker_list|length|pluralize }}
{% endblock %} {% block js_end %} {% endblock %}