Skip to content

Commit

Permalink
fix: Show recordings for interims
Browse files Browse the repository at this point in the history
List the recordings if the "meeting numnber" starts with "interim"

Fixes: ietf-tools#6543
  • Loading branch information
richsalz committed Mar 16, 2024
1 parent cee6999 commit becd236
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ietf/templates/meeting/session_details_panel.html
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ <h3 class="mt-4">Notes and recordings</h3>
</tr>
{% endif %}
{# Recordings #}
{% if meeting.number|add:"0" >= 80 %}
{% if meeting.number|add:"0" >= 80 or "interim" in meeting.number %}
{% with session.recordings as recordings %}
{% if recordings %}
{# There's no guaranteed order, so this is a bit messy: #}
Expand Down

0 comments on commit becd236

Please sign in to comment.