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