Skip to content

Commit

Permalink
fix: Add remote instructions to interim agenda page
Browse files Browse the repository at this point in the history
  • Loading branch information
larseggert committed Oct 6, 2023
1 parent a97f306 commit 1af3ceb
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion ietf/templates/doc/document_material.html
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,21 @@
{% if presentations %}
{% for pres in presentations %}
{{ pres.session.short_name }} at {{ pres.session.meeting }}
{% if pres.rev != doc.rev %}(version -{{ pres.rev }}){% endif %}{% if not forloop.last %},{% endif %}
{% if pres.rev != doc.rev %}(version -{{ pres.rev }}){% endif %}
<br>
<b>Remote instructions:</b>
{% if pres.session.agenda_note|first_url|conference_url %}
<a href="{{ pres.session.agenda_note|first_url }}" title="Online conference">
<i class="bi bi-beople"></i>
</a>
{% elif pres.session.remote_instructions|first_url|conference_url %}
<a href="{{ pres.session.remote_instructions|first_url }}"
title="Online conference">
<i class="bi bi-people"></i>
</a>
{% endif %}
{{ pres.session.remote_instructions|linkify }}
{% if not forloop.last %}<br>{% endif %}
{% endfor %}
{% else %}
<span class="text-body-secondary">(None)</span>
Expand Down

0 comments on commit 1af3ceb

Please sign in to comment.