{% extends "orga/base.html" %} {% load compress %} {% load event_tags %} {% load i18n %} {% load static %} {% load samaware_extras %} {% block stylesheets %} {% compress css %} {% endcompress %} {% endblock stylesheets %} {% block scripts %} {% compress js %} {% endcompress %} {% endblock scripts %} {% block extra_title %}{{ slots.count}} {% translate 'talks missing speakers' %} :: SamAware :: {% endblock extra_title %} {% block content %}
| {% if request.event|get_feature_flag:'use_tracks' %} {% endif %} | {% translate 'Title' %} | {% translate 'Speakers' %} | {% translate 'Start' %} | {% translate 'Room' %} |
|---|---|---|---|---|
| {% if request.event|get_feature_flag:'use_tracks' and slot.submission.track %} {% endif %} | {{ slot.submission.title }} |
{% for speaker in slot.submission.speakers.all %}
{% with speaker_profile=event_profiles|get_item:speaker %}
{% if speaker_profile.has_arrived %}
{% translate 'Arrived' %}
{% else %}
{% translate 'Not arrived' %}
{% endif %}
{{ speaker.name }}
{% endwith %}
{% if not forloop.last %} {% endif %} {% endfor %} |
{{ slot.start|date:'SHORT_DATETIME_FORMAT' }} | {{ slot.room }} |