{% 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 %}

{{ slots.count}} {% translate 'talks missing speakers' %}

{{ filter_form.as_div }}
{% for slot in slots %} {% url 'plugins:samaware:talk_overview' event=request.event.slug code=slot.submission.code as talk_url %} {% endfor %}
{% 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 }}
{% endblock content %}