{% blocktranslate trimmed %}
This is a draft proposal.
It will never be visible to anybody else, unless you submit it or explicitly share it.
{% endblocktranslate %}
{% endif %}
{% if show_invites %}{% has_perm "submission.add_speaker_submission" request.user submission as can_invite_speakers %}{% endif %}
{{ submission.display_speaker_names }}{% if show_invites and invitations %},
{% for invitation in invitations %}
{{ invitation.email }}{% if can_invite_speakers %}
{% endif %}{% if not forloop.last %},{% endif %}
{% endfor %}
{% endif %}
{% if can_invite_speakers and can_add_more_speakers %}
{% endif %}
{% if submission.state != "draft" %}
{{ phrases.submission.state }}
{% include "cfp/event/fragment_state.html" with state=submission.state as_badge=True %}
{% endif %}
{% if submission.submission_type and request.event.submission_types.all|length > 1 %}
{% translate "Session type" %}
{{ submission.submission_type.name }}
{% endif %}
{% if submission.track and request.event.tracks.all|length > 1 %}
{{ phrases.submission.track }}
{{ submission.track.name }}
{% endif %}
{% if request.event.is_multilingual and request.event.cfp.request_content_locale %}
{{ phrases.base.language }}
{{ submission.get_content_locale_display }}
{% endif %}
{% translate "Duration" %}
{{ submission.export_duration }}
{% if submission.public_slots %}
{% for talk in submission.public_slots %}
{{ talk.start|datetimerange:talk.end }}
{{ talk.room.name }}{% if not forloop.last %} {% endif %}
{% endfor %}