forked from adamlaska/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintroduction.html
More file actions
57 lines (50 loc) · 1.65 KB
/
introduction.html
File metadata and controls
57 lines (50 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{% 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">
<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 'ietf.meeting.views.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>