{% extends "orga/base.html" %} {% load compress %} {% load event_tags %} {% load i18n %} {% load rules %} {% load static %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock scripts %} {% block stylesheets %} {% if timeline_data %} {% endif %} {% endblock stylesheets %} {% block extra_title %}{{ page_obj.paginator.count }} {% blocktranslate trimmed count count=page_obj.paginator.count %}session{% plural %}sessions{% endblocktranslate %} :: {% endblock extra_title %} {% block content %} {% has_perm "submission.create_submission" request.user request.event as can_create_submission %} {% has_perm "submission.state_change_submission" request.user request.event as can_change_submission %} {% has_perm "person.orga_list_speakerprofile" request.user request.event as can_view_speakers %} {% has_perm "mail.send_queuedmail" request.user request.event as can_send_mails %}

{{ page_obj.paginator.count }} {% blocktranslate trimmed count count=page_obj.paginator.count %} session {% plural %} sessions {% endblocktranslate %}

{% if can_send_mails %} {% translate "Send email" %} {% endif %} {% if pending_changes and can_change_submission %} {% translate "Apply pending changes" %} ({{ pending_changes }}) {% endif %} {% if can_create_submission %} {% translate "Add new session or proposal" %} {% endif %}

{% include "orga/includes/submission_filter_form.html" %}
{% if can_view_speakers %}{% endif %} {% if show_submission_types %} {% endif %} {% if can_change_submission %} {% endif %} {% for submission in submissions %} {% if can_view_speakers %} {% endif %} {% if show_submission_types %}{% endif %} {% if can_change_submission %} {% endif %} {% endfor %}
{% if request.event|get_feature_flag:"use_tracks" and filter_form.track %} {% endif %} {% translate "Title" %} {{ phrases.schedule.speakers }} {% translate "Type" %} {% translate "State" %} {% translate "Featured" %}
{% if request.event|get_feature_flag:"use_tracks" and submission.track %} {% if not submission.is_anonymised %}
{% else %} {% endif %} {% else %} {% if submission.anonymised %} {% endif %} {% endif %}
{% if can_view_speakers %} {{ submission.title }} {% else %} {{ submission.anonymised.title|default:submission.title }} {% endif %} {% for speaker in submission.speakers.all %} {% include "orga/includes/user_name.html" with user=speaker %}
{% endfor %}
{{ submission.submission_type.name }} {% if can_change_submission %} {% include "orga/submission/state_dropdown.html" with submission=submission %} {% else %} {% include "cfp/event/fragment_state.html" with state=submission.state as_badge=True %} {% endif %}
{% include "orga/includes/pagination.html" %} {% endblock content %}