From 73931c2ed779c8324c7d4354b2b48d9d23dd64c7 Mon Sep 17 00:00:00 2001 From: Lars Eggert Date: Tue, 2 Aug 2022 17:20:26 +0200 Subject: [PATCH] fix: Move Meetecho buttons to separate button group (#4295) Fixes #4288 --- .../meeting/session_buttons_include.html | 48 +++++++++++-------- 1 file changed, 28 insertions(+), 20 deletions(-) diff --git a/ietf/templates/meeting/session_buttons_include.html b/ietf/templates/meeting/session_buttons_include.html index 2a8cc846c..1e18f53db 100644 --- a/ietf/templates/meeting/session_buttons_include.html +++ b/ietf/templates/meeting/session_buttons_include.html @@ -13,6 +13,33 @@ {# Note: if called with show_agenda=True, calling template must load agenda_materials.js, needed by session_agenda_include.html #} {% include "meeting/session_agenda_include.html" with slug=slug session=session timeslot=timeslot only %} {% endif %} +
+ {% if timeslot.location.video_stream_url or timeslot.location.onsite_tool_url %} +
+ {# Video stream (meetecho) #} + {% if timeslot.location.video_stream_url %} + + + + {% endif %} + {# Onsite tool (meetecho_onsite) #} + {% if timeslot.location.onsite_tool_url %} + + + + {% endif %} +
+ {% endif %}
@@ -63,26 +90,6 @@ title="Chat room for {{ session.chat_room_name }}"> - {# Video stream (meetecho) #} - {% if timeslot.location.video_stream_url %} - - - - {% endif %} - {# Onsite tool (meetecho_onsite) #} - {% if timeslot.location.onsite_tool_url %} - - - - {% endif %} {# Audio stream #} {% if timeslot.location.audio_stream_url %}
+
{% endwith %} {% endwith %} {% endwith %}