forked from ietf-tools/datatracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathall_presentations.html
More file actions
51 lines (51 loc) · 1.73 KB
/
all_presentations.html
File metadata and controls
51 lines (51 loc) · 1.73 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
{% extends "base.html" %}
{# Copyright The IETF Trust 2015, All Rights Reserved #}
{% load origin ietf_filters static %}
{% block title %}Sessions linked to {{ doc.name }}{% endblock %}
{% block pagehead %}
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
{% endblock %}
{% block content %}
{% origin %}
<h1>
Sessions linked to
<br>
<small class="text-body-secondary">{{ doc.name }}</small>
</h1>
{% if user|has_role:"Secretariat,Area Director,WG Chair,WG Secretary,RG Chair,RG Secretary,IRTF Chair,Team Chair" %}
<div class="buttonlist">
<a class="btn btn-primary"
id="addsessionsbutton"
href="{% url 'ietf.doc.views_doc.add_sessionpresentation' name=doc.name %}">
Link to more sessions
</a>
</div>
{% endif %}
{% if in_progress %}
<div id="inprogressmeets">
<h2 class="mt-3">Meetings in progress</h2>
{% with sessions=in_progress %}
{% include "doc/material/presentations-row.html" %}
{% endwith %}
</div>
{% endif %}
{% if future %}
<div id="futuremeets">
<h2 class="mt-3">Future meetings</h2>
{% with sessions=future %}
{% include "doc/material/presentations-row.html" %}
{% endwith %}
</div>
{% endif %}
{% if past %}
<div id="pastmeets">
<h2 class="mt-3">Past meetings</h2>
{% with sessions=past %}
{% include "doc/material/presentations-row.html" %}
{% endwith %}
</div>
{% endif %}
{% endblock %}
{% block js %}
<script src="{% static "ietf/js/list.js" %}"></script>
{% endblock %}