{% extends "orga/cfp/base.html" %} {% load bootstrap4 %} {% load i18n %} {% load rules %} {% block content %}

{{ page_obj.paginator.count }} {% blocktrans trimmed count count=page_obj.paginator.count %} submitter {% plural %} submitters {% endblocktrans %}

{% bootstrap_form search_form %} {% bootstrap_form filter_form %}
{% has_perm 'orga.mark_speakers_arrived' request.user request.event as can_mark_speaker %} {% has_perm 'orga.see_speakers_arrival' request.user request.event as can_see_speaker_status %} {% if can_mark_speaker or can_see_speaker_status %}{% endif %} {% for profile in speakers %} {% if can_mark_speaker or can_see_speaker_status %} {% endif %} {% endfor %}
{% trans "Name" %} {% trans "Talks" %} {% trans "Submissions" %}
{{ profile.user.get_display_name }} {{ profile.talks.count }} {{ profile.submissions.count }} {% if can_mark_speaker %} {% if profile.has_arrived %} {% trans "Mark speaker as not arrived" %} {% else %} {% trans "Mark speaker as arrived" %} {% endif %} {% else %} {% if profile.has_arrived %} {% trans "Arrived" %} {% else %} {% trans "Not arrived" %} {% endif %} {% endif %}
{% include "orga/pagination.html" %} {% endblock %}