{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin %}
{% load staticfiles %}
{% load textfilters %}
{% origin %}
{% if session.agenda and show_agenda %}
{% include "meeting/session_agenda_include.html" %}
{% endif %}
{% if item.timeslot.type.slug == 'plenary' %}
{% else %}
{% endif %}
{# show stream buttons up till end of session, then show archive buttons #}
{% if now < item.timeslot.end_time %}
{% if item.timeslot.location.video_stream_url %}
{% endif %}
{% if item.timeslot.location.audio_stream_url %}
{% endif %}
{% if "webex.com/" in session.agenda_note|first_url %}
{% elif item.timeslot.location.webex_url %}
{% endif %}
{% else %}
{% if meeting.number|add:"0" >= 60 %}
{% endif %}
{% if meeting.number|add:"0" >= 80 %}
{% with session.recordings as recordings %}
{% if recordings %}
{# There's no guaranteed order, so this is a bit messy: #}
{% for r in recordings %}
{% if r.get_href and 'audio' in r.get_href %}
{% endif %}
{% endfor %}
{% for r in recordings %}
{% if r.get_href and 'youtu' in r.get_href %}
{% endif %}
{% endfor %}
{% for r in recordings %}
{% if r.get_href and not 'audio' in r.get_href and not 'youtu' in r.get_href %}
{% endif %}
{% endfor %}
{% endif %}
{% endwith %}
{% if item.timeslot.location.video_stream_url %}
{% endif %}
{% endif %}
{% endif %}