datatracker/ietf/templates/meeting/proceedings/introduction.html
Nicolas Giard 6f2114fb0c
feat: replace old agenda with agenda-neue (#4406)
* feat: remove old agenda (django-side)

* fix: bring in latest commits

* test: remove -neue from playwright tests

* test: remove agenda selenium js tests

* test: remove agenda views tests

* fix: remove deprecated agenda views (week-view, agenda-by, floor-plan)

* test: fix failing python tests

* test: remove more deprecated tests

* chore: remove deprecated templates

* test: remove unused import

* feat: handle agenda personalize with filter + move agenda specific stuff out of root component

* fix: redirect deprecated urls to agenda / floorplan

* feat: agenda - open picker mode when from personalize path

* fix: safari doesn't support device-pixel-content-box property on ResizeObserver

* test: move floor plan test into main agenda test

Co-authored-by: Robert Sparks <rjsparks@nostrum.com>
2022-10-12 15:46:28 -05:00

39 lines
1.7 KiB
HTML

{% comment %} Copyright The IETF Trust 2021, All Rights Reserved
This renders the list of links below the title on the meeting proceedings page.
{% endcomment %}
<div class="proceedings-intro my-3">
<div class="proceedings-column">
<div class="proceedings-row">
<a href="{% url 'ietf.meeting.views.proceedings_overview' num=meeting.number %}">IETF Overview</a>
</div>
<div class="proceedings-row">
<a href="{% url 'ietf.meeting.views.proceedings_attendees' num=meeting.number %}">Participants</a>
</div>
<div class="proceedings-row">
<a href="{% url 'agenda' num=meeting.number %}">Meeting Agenda</a>
</div>
<div class="proceedings-row">
<a href="{% url 'ietf.meeting.views.proceedings_progress_report' num=meeting.number %}">Activity Report</a>
</div>
<div class="proceedings-row">
<a href="{% url 'ietf.meeting.views.important_dates' num=meeting.number %}">Important Dates</a>
</div>
{% if meeting.proceedings_format_version < 3 %}
<div class="proceedings-row">
<a href="{% url 'ietf.meeting.views.proceedings_acknowledgements' num=meeting.number %}">Acknowledgements</a>
</div>
{% endif %}
</div>
{% with materials=meeting.get_proceedings_materials %}
{% if materials|length > 0 %}
<div class="proceedings-column">
{% for mat in materials %}
<div class="proceedings-row proceedings-material">
<a href="{{ mat.get_href }}">{{ mat }}</a>
</div>
{% endfor %}
</div>
{% endif %}
{% endwith %}
</div>