{% extends "orga/base.html" %} {% load compress %} {% load event_tags %} {% load html_signal %} {% load i18n %} {% load rich_text %} {% load static %} {% load samaware_extras %} {% block stylesheets %} {% compress css %} {% endcompress %} {% endblock stylesheets %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock scripts %} {% block extra_title %}{{ submission.title }} :: SamAware :: {% endblock extra_title %} {% block content %}

{{ quotation_open }}{{ submission.title }}{{ quotation_close }}

 {% translate 'Show in Public Schedule' %}  {% translate 'Edit Session' %}

{% if not submission_is_confirmed %} {% endif %} {% if submission.pending_state %} {% endif %} {% if submission_unreleased_changes %} {% endif %} {% for message in speaker_care_messages %} {% endfor %}

{% translate 'Time and Location' %}

    {% for slot in submission_wip_slots %}
  • {{ slot.start|date:'l, j M Y, H:i' }}, {{ slot.room.name }}
  • {% endfor %}

{% translate 'Duration' %}

{{ submission.export_duration }}

{% translate 'Language' %}

{{ submission.content_locale }} flag  {{ submission.get_content_locale_display }}
{% if request.event|get_feature_flag:'use_tracks' and submission.track %}

{% translate 'Track' %}

 {{ submission.track.name }}
{% endif %}

{% translate 'Abstract' %}

{{ submission.abstract|rich_text }}

{% translate 'Recording' %}

{% if submission.do_not_record %}  {% translate 'Not being streamed/recorded' %} {% else %}  {% translate 'Being streamed/recorded' %} {% endif %}

{% translate 'Tech Rider' as tech_rider_title %}

{% url 'plugins:samaware:tech_rider_fragment' event=request.event.slug code=submission.code as tech_rider_url %} {% include 'samaware/fragments/form_or_content.html' with headline=tech_rider_title show_form=False fragment_target=tech_rider_url content=submission.tech_rider.text|rich_text only %} {% translate 'Internal Notes' as internal_notes_title %} {% url 'plugins:samaware:internal_notes_fragment' event=request.event.slug code=submission.code as internal_notes_url %} {% include 'samaware/fragments/form_or_content.html' with headline=internal_notes_title show_form=False fragment_target=internal_notes_url content=submission.internal_notes|default:''|linebreaks only %}

{% translate 'Submitter Notes' %}

{% if submission.notes %} {{ submission.notes|linebreaks }} {% else %} {% translate 'None' %} {% endif %} {% html_signal 'samaware.signals.submission_html' sender=request.event request=request submission=submission %}
{% for speaker in submission.speakers.all %} {% with speaker_profile=speaker_profiles|get_item:speaker %}

{% translate 'Contact' %}

{{ speaker.email }}

{% translate 'Attendance' %}

{% if speaker_profile.has_arrived %} {% else %} {% endif %}
{% if speaker_profile.talks|length > 1 %}

{% translate 'Other talks in this event' %}

    {% for talk in speaker_profile.talks %} {% if not talk.code == submission.code %}
  • {{ talk.title }}
  • {% endif %} {% endfor %}
{% endif %} {% with talks=other_event_talks|get_item:speaker %} {% if talks %}

{% translate 'Talks in other events' %}

{% endif %} {% endwith %} {% html_signal 'samaware.signals.speaker_html' sender=request.event request=request user=speaker %}
{% endwith %} {% endfor %}
{% endblock %}