File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -4105,6 +4105,7 @@ def _format_materials(items):
41054105 'minutes' : _format_materials ((s , s .minutes ()) for s in ss ),
41064106 'bluesheets' : _format_materials ((s , s .bluesheets ()) for s in ss ),
41074107 'recordings' : _format_materials ((s , s .recordings ()) for s in ss ),
4108+ 'meetecho_recordings' : _format_materials ((s , [s .session_recording_url ()]) for s in ss ),
41084109 'chatlogs' : _format_materials ((s , s .chatlogs ()) for s in ss ),
41094110 'slides' : _format_materials ((s , s .slides ()) for s in ss ),
41104111 'drafts' : _format_materials ((s , s .drafts ()) for s in ss ),
Original file line number Diff line number Diff line change @@ -88,12 +88,13 @@ <h1>{{ entry.group }}</h1>
8888 </ a >
8989 < br >
9090 {% endfor %}
91- {% if entry.session.video_stream_url %}
92- < a href ="{{ entry.session.session_recording_url }} ">
93- Session recording
94- </ a >
95- < br >
96- {% endif %}
91+ {% for rec in entry.meetecho_recordings %}
92+ < a href ="{{ rec.material }} ">
93+ Session recording
94+ {% if rec.time %}{{ rec.time|date:"D G:i"}}{% endif %}
95+ </ a >
96+ < br >
97+ {% endfor%}
9798 </ td >
9899 {# slides #}
99100 < td >
You can’t perform that action at this time.
0 commit comments