Skip to content

Commit

Permalink
fix: show meetecho recordings for groups with more than one session (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
rjsparks authored Nov 19, 2024
1 parent 71f52bc commit bdf503a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
1 change: 1 addition & 0 deletions ietf/meeting/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -4105,6 +4105,7 @@ def _format_materials(items):
'minutes': _format_materials((s, s.minutes()) for s in ss),
'bluesheets': _format_materials((s, s.bluesheets()) for s in ss),
'recordings': _format_materials((s, s.recordings()) for s in ss),
'meetecho_recordings': _format_materials((s, [s.session_recording_url()]) for s in ss),
'chatlogs': _format_materials((s, s.chatlogs()) for s in ss),
'slides': _format_materials((s, s.slides()) for s in ss),
'drafts': _format_materials((s, s.drafts()) for s in ss),
Expand Down
13 changes: 7 additions & 6 deletions ietf/templates/meeting/group_proceedings.html
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,13 @@ <h1>{{ entry.group }}</h1>
</a>
<br>
{% endfor %}
{% if entry.session.video_stream_url %}
<a href="{{ entry.session.session_recording_url }}">
Session recording
</a>
<br>
{% endif %}
{% for rec in entry.meetecho_recordings %}
<a href="{{ rec.material }}">
Session recording
{% if rec.time %}{{ rec.time|date:"D G:i"}}{% endif %}
</a>
<br>
{% endfor%}
</td>
{# slides #}
<td>
Expand Down

0 comments on commit bdf503a

Please sign in to comment.