{% extends "orga/cfp/base.html" %} {% load bootstrap4 %} {% load i18n %} {% block content %} {{ page_obj.paginator.count }} {% blocktrans trimmed count count=page_obj.paginator.count %} speaker {% plural %} speakers {% endblocktrans %}
{% bootstrap_form search_form %} {% bootstrap_form filter_form %}
{% for profile in speakers %} {% endfor %}
{% trans "Name" %} {% trans "Talks" %} {% trans "Submissions" %}
{{ profile.user.get_display_name }} {{ profile.talks.count }} {{ profile.submissions.count }} {% if profile.has_arrived %} {% trans "Mark speaker as not arrived" %} {% else %} {% trans "Mark speaker as arrived" %} {% endif %}
{% include "orga/pagination.html" %} {% endblock %}