Changed the agenda template to provide links to video recordings on youtube if available, instead of pointing at meetecho's archive.

- Legacy-Id: 12209
This commit is contained in:
Henrik Levkowetz 2016-10-25 00:13:03 +00:00
parent 17bf44af3c
commit 0656d0daa5

View file

@ -386,10 +386,40 @@
{% endif %} {% endif %}
<!-- Video recording --> <!-- Video recording -->
{% if schedule.meeting.number|add:"0" >= 80 %} {% if schedule.meeting.number|add:"0" >= 80 %}
<a class="btn btn-default btn-xs" {% with item.session.recordings as recordings %}
href="http://www.meetecho.com/ietf{{schedule.meeting.number}}/recordings#{{item.session.historic_group.acronym.upper}}" {% if recordings %}
title="Meetecho video recording"><span class="fa fa-file-video-o"></span> <!-- There's no guaranteed order, so this is a bit messy: -->
</a> <!-- First, the audio recordings, if any -->
{% for r in recordings %}
{% if r.href and 'audio' in r.href %}
<a class="btn btn-default btn-xs" href="{{ r.href }}" title="{{ r.title}}">
<span class="fa fa-file-audio-o">
</a>
{% endif %}
{% endfor %}
<!-- Then the youtube recordings -->
{% for r in recordings %}
{% if r.href and 'youtu' in r.href %}
<a class="btn btn-default btn-xs" href="{{ r.href }}" title="{{ r.title }}">
<span class="fa fa-file-video-o"></span>
</a>
{% endif %}
{% endfor %}
<!-- Finally, any other recordings -->
{% for r in recordings %}
{% if r.href and not 'audio' in r.href and not 'youtu' in r.href %}
<a class="btn btn-default btn-xs" href="{{ r.href }}" title="{{ r.title }}">
<span class="fa fa-file-o"></span>
</a>
{% endif %}
{% endfor %}
{% else %}
<a class="btn btn-default btn-xs"
href="http://www.meetecho.com/ietf{{schedule.meeting.number}}/recordings#{{item.session.historic_group.acronym.upper}}"
title="Meetecho video recording"><span class="fa fa-file-video-o"></span>
</a>
{% endif %}
{% endwith %}
{% endif %} {% endif %}
<!-- Audio recording --> <!-- Audio recording -->
{# <a class="btn btn-default btn-xs" href="" title="Audio recording"><span class="fa fa-file-audio-o"></span></a>#} {# <a class="btn btn-default btn-xs" href="" title="Audio recording"><span class="fa fa-file-audio-o"></span></a>#}