{% extends "orga/cfp/base.html" %} {% load bootstrap4 %} {% load compress %} {% load i18n %} {% load rules %} {% load static %} {% load url_replace %} {% block stylesheets %} {% if timeline_data %} {% endif %} {% endblock %} {% block content %} {% has_perm 'orga.create_submission' request.user request.event as can_create_submission %} {% has_perm 'orga.change_submission_state' request.user request.event as can_change_submission %} {% has_perm 'orga.view_speakers' request.user request.event as can_view_speakers %}

{{ page_obj.paginator.count }} {% blocktranslate trimmed count count=page_obj.paginator.count %} proposal {% plural %} proposals {% endblocktranslate %}

{% if pending_changes and can_change_submission %} {% translate "Apply pending changes" %} ({{ pending_changes }}) {% endif %} {% if can_create_submission %} {% translate "Add new proposal" %} {% endif %}

{% bootstrap_form search_form %} {% if show_submission_types and filter_form.submission_type %}{% bootstrap_field filter_form.submission_type %}{% endif %} {% bootstrap_field filter_form.state layout='inline' %} {% if filter_form.track %}{% bootstrap_field filter_form.track %}{% endif %} {% if filter_form.tags %}{% bootstrap_field filter_form.tags %}{% endif %}
{% if filter_form.is_valid and filter_form.cleaned_data.question %}

{% blocktranslate trimmed with question=filter_form.cleaned_data.question.question %} List filtered by answers to question "{{ question }}". {% endblocktranslate %} {% translate "Remove filter" %}

{% endif %}
{% if request.event.feature_flags.use_tracks %} {% endif %} {% if can_view_speakers %}{% endif %} {% if show_submission_types %} {% endif %} {% if can_change_submission %} {% endif %} {% for submission in submissions %} {% if request.event.feature_flags.use_tracks %} {% endif %} {% if can_view_speakers %} {% endif %} {% if show_submission_types %} {% endif %} {% if can_change_submission %} {% endif %} {% endfor %}
{% translate "Title" %} {% translate "Speakers" %} {% translate "Type" %} {% translate "State" %} {% translate "Featured" %}
{% if submission.track %}
{% endif %}
{% if can_view_speakers %}{{ submission.title }}{% else %}{{ submission.anonymised.title|default:submission.title }}{% endif %} {% for speaker in submission.speakers.all %} {{ speaker.get_display_name }}
{% endfor %}
{{ submission.submission_type.name }} {% include "orga/submission/state_dropdown.html" with submission=submission %}
{% include "orga/pagination.html" %} {% endblock %}