{% extends "orga/base.html" %} {% load i18n %} {% load rules %} {% block extra_title %}{{ page_obj.paginator.count }} {% blocktranslate trimmed count count=page_obj.paginator.count %}submitter{% plural %}submitters{% endblocktranslate %} :: {% endblock extra_title %} {% block content %}
{% blocktranslate trimmed with question=filter_form.cleaned_data.question.question %} List filtered by answers to question “{{ question }}”. {% endblocktranslate %} {% translate "Remove filter" %}
{% endif %} {% 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 %}{% translate "Name" %} | {% translate "Accepted Proposals" %} | {% translate "Proposals" %} | {% if can_mark_speaker or can_see_speaker_status %}{% endif %} |
---|---|---|---|
{% include "orga/includes/user_name.html" with user=profile.user %} | {{ profile.accepted_submission_count }} | {{ profile.submission_count }} | {% if can_mark_speaker or can_see_speaker_status %}{% if profile.accepted_submission_count %} {% if can_mark_speaker %} {% if profile.has_arrived %} {% translate "Mark speaker as not arrived" %} {% else %} {% translate "Mark speaker as arrived" %} {% endif %} {% else %} {% if profile.has_arrived %} {% translate "Arrived" %} {% else %} {% translate "Not arrived" %} {% endif %} {% endif %} {% endif %} | {% endif %}