From 100789cf6b6ad989108621a546abaeffb27095a1 Mon Sep 17 00:00:00 2001 From: Russ Housley Date: Sat, 20 Jul 2024 17:18:00 -0400 Subject: [PATCH] Update session_details_panel.html Add rows for interim meeting recordings. Fixes #7699. --- ietf/templates/meeting/session_details_panel.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ietf/templates/meeting/session_details_panel.html b/ietf/templates/meeting/session_details_panel.html index d053ba1c1c..7488bb6820 100644 --- a/ietf/templates/meeting/session_details_panel.html +++ b/ietf/templates/meeting/session_details_panel.html @@ -320,7 +320,7 @@

Notes and recordings

{% endif %} {# Recordings #} - {% if meeting.number|add:"0" >= 80 %} + {% if meeting.type.slug == 'interim' or meeting.number|add:"0" >= 80 %} {% with session.recordings as recordings %} {% if recordings %} {# There's no guaranteed order, so this is a bit messy: #} @@ -370,4 +370,4 @@

Notes and recordings

{% endif %} {% endwith %}{% endwith %} -{% endfor %} \ No newline at end of file +{% endfor %}