Skip to content

Commit ae7c770

Browse files
committed
Tweaked the interim_session_buttons template, bringing it closer to the session_buttons_include template.
- Legacy-Id: 17766
1 parent 42473ec commit ae7c770

1 file changed

Lines changed: 15 additions & 6 deletions

File tree

ietf/templates/meeting/interim_session_buttons.html

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,16 @@
88
<!-- agenda pop-up button -->
99
<a class="" data-toggle="modal" data-target="#modal-{{item.slug}}" title="Show meeting materials"><span class="fa fa-fw fa-arrows-alt"></span></a>
1010
<!-- materials tar file -->
11-
<a class="" href="/meeting/{{meeting.number}}/agenda/{{session.group.acronym}}-drafts.tgz" title="Download meeting materials as .tar archive"><span class="fa fa-fw fa-file-archive-o"></span></a>
11+
<a class="" href="/meeting/{{meeting.number}}/agenda/{{session.historic_group.acronym}}-drafts.tgz" title="Download meeting materials as .tar archive"><span class="fa fa-fw fa-file-archive-o"></span></a>
1212
<!-- materials PDF file -->
13-
<a class="" href="/meeting/{{ meeting.number }}/agenda/{{session.group.acronym}}-drafts.pdf" title="Download meeting materials as PDF file"><span class="fa fa-fw fa-file-pdf-o"></span></a>
13+
<a class="" href="/meeting/{{ meeting.number }}/agenda/{{session.historic_group.acronym}}-drafts.pdf" title="Download meeting materials as PDF file"><span class="fa fa-fw fa-file-pdf-o"></span></a>
1414
{% endif %}
1515
<!-- etherpad -->
16-
<a class="" href="https://etherpad.ietf.org:9009/p/notes-ietf-{{ meeting.number }}?useMonospaceFont=true" title="Etherpad for note-takers"><span class="fa fa-fw fa-edit"></span></a>
16+
{% if item.timeslot.type.slug == 'plenary' %}
17+
<a class="" href="https://etherpad.ietf.org:9009/p/notes-ietf-{{ meeting.number }}-plenary?useMonospaceFont=true" title="Etherpad for note-takers"><span class="fa fa-fw fa-edit"></span></a>
18+
{% else %}
19+
<a class="" href="https://etherpad.ietf.org:9009/p/notes-ietf-{{ meeting.number }}-{{session.historic_group.acronym}}?useMonospaceFont=true" title="Etherpad for note-takers"><span class="fa fa-fw fa-edit"></span></a>
20+
{% endif %}
1721

1822
{# show stream buttons up till end of session, then show archive buttons #}
1923
{% if now < item.timeslot.end_time %}
@@ -28,22 +32,23 @@
2832
{% elif session.remote_instructions|first_url %}
2933
<a class=""
3034
href="{{ session.remote_instructions|first_url }}"
31-
title="Webex session"><span class="fa fa-fw fa-phone"></span>
35+
title="Session call-in"><span class="fa fa-fw fa-phone"></span>
3236
</a>
3337
{% elif item.timeslot.location.webex_url %}
3438
<a class=""
3539
href="{{item.timeslot.location.webex_url|format:session }}"
3640
title="Webex session"><span class="fa fa-fw fa-phone"></span>
3741
</a>
42+
<!-- Video stream (meetecho) -->
3843
{% elif item.timeslot.location.video_stream_url %}
3944
<a class=""
4045
href="{{item.timeslot.location.video_stream_url|format:session }}"
41-
title="Webex session"><span class="fa fa-fw fa-video-camera"></span>
46+
title="Meetecho video stream"><span class="fa fa-fw fa-video-camera"></span>
4247
</a>
4348
{% else %}
4449
<span class="">
4550
<span class="fa fa-fw fa-phone" style="color: #ddd;"
46-
title="No webex info found in remote instructions or agenda note"></span>
51+
title="No webex or meetecho info found in remote instructions or agenda note"></span>
4752
</span>
4853
{% endif %}
4954
{% else %}
@@ -72,6 +77,10 @@
7277
<a class="" href="{{ href }}" title="{{ r.title }}"><span class="fa fa-fw fa-file-o"></span></a>
7378
{% endif %}
7479
{% endwith %}{% endfor %}
80+
{% elif item.timeslot.location.video_stream_url %}
81+
<a class=""
82+
href="http://www.meetecho.com/ietf{{meeting.number}}/recordings#{{session.historic_group.acronym.upper}}"
83+
title="Meetecho session recording"><span class="fd fa-fw fd-meetecho"></span></a>
7584
{% elif show_empty %}
7685
<span class="fa fa-fw"></span>
7786
{% endif %}

0 commit comments

Comments
 (0)