{% 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 %}
{% 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 request.event|get_feature_flag:"use_tracks" and filter_form.track %} {% endif %} | {% translate "Title" %} | {% if can_view_speakers %}{{ phrases.schedule.speakers }} | {% endif %} {% if show_submission_types %}{% translate "Type" %} | {% endif %}{% translate "State" %} | {% if can_change_submission %}{% translate "Featured" %} | {% endif %} |
---|---|---|---|---|---|---|
{% if request.event|get_feature_flag:"use_tracks" and submission.track %}
{% if not submission.is_anonymised %}
|
{% if can_view_speakers %} {{ submission.title }} {% else %} {{ submission.anonymised.title|default:submission.title }} {% endif %} | {% if can_view_speakers %}
{% for speaker in submission.speakers.all %}
{% include "orga/includes/user_name.html" with user=speaker %}
{% endfor %} |
{% endif %}
{% if show_submission_types %}{{ submission.submission_type.name }} | {% endif %}{% 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 %} | {% if can_change_submission %}
|
{% endif %} |