11{% extends "base.html" %}
2+ {% comment %}bs5ok{% endcomment %}
23{# Copyright The IETF Trust 2015, All Rights Reserved #}
34{% load origin static %}
4-
55{% load ballot_icon %}
66{% load ietf_filters %}
77{% load django_bootstrap5 %}
8-
98{% block pagehead %}
109 <link rel="alternate" type="application/atom+xml" href="/feed/iesg-agenda/">
1110 <link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
1211{% endblock %}
13-
1412{% block title %}Documents on future IESG telechat agendas{% endblock %}
15-
1613{% block content %}
1714 {% origin %}
1815 <h1>Documents on future IESG telechat agendas</h1>
19-
20- <ul class="nav nav-tabs mb-3">
21- <li class="nav-item "><a class="nav-link" href="{% url 'ietf.iesg.views.agenda' %}">IESG Agenda</a></li>
22- <li class="nav-item"><a class="nav-link active" href="{% url 'ietf.iesg.views.agenda_documents' %}">Documents on future agendas</a></li>
23- <li class="nav-item "><a class="nav-link" href="{% url 'ietf.iesg.views.discusses' %}">DISCUSS positions</a></li>
24- <li class="nav-item "><a class="nav-link" href="{% url 'ietf.iesg.views.past_documents' %}">Documents on recent agendas</a></li>
25- <li class="nav-item "><a class="nav-link" href="{% url 'ietf.iesg.views.photos' %}">IESG Photos</a></li>
26- </ul>
27-
16+ {% include "iesg/nav.html" with active="agenda_documents" %}
2817 {% if user|has_role:"Secretariat" %}
2918 <form class="form-inline" method="post">
3019 {% csrf_token %}
31- {% endif %}
32-
33- {% for t in telechats %}
34- <h2>IESG telechat {{t.date}}
35- <br><small class="text-muted">{{t.pages}} page{{t.pages|pluralize}}</small>
36- </h2>
37- <div class="buttonlist">
38- <a class="btn btn-primary" role="button" href="/iesg/agenda/">
39- <span class="bi bi-list"></span>
40- Full IESG agenda
41- </a>
42-
43- <a class="btn btn-primary" role="button" href="/iesg/agenda/telechat-{{t.date|date:"Y"}}-{{t.date|date:"m"}}-{{t.date|date:"d"}}-docs.tgz">
44- <span class="bi bi-download"></span>
45- Download documents
46- </a>
47- </div>
48-
49- {% for num, section in t.sections %}
50- {% if "docs" not in section or section.docs %}
51- {% if num|sectionlevel == 1 %}<h3 class="mt-3">{{ num }}. {{ section.title|safe }}</h3>{% endif %}
52- {% if num|sectionlevel == 2 %}<h4 class="mt-3">{{ num }} {{ section.title|safe }}</h4>{% endif %}
53- {% if num|sectionlevel == 3 %}<h5 class="mt-3">{{ num }} {{ section.title|safe }}</h5>{% endif %}
54- {% endif %}
55-
56- {% if "docs" in section and section.docs %}
57- <table class="table table-sm table-striped tablesorter">
58- <thead>
59- <tr>
60- <th></th>
61- <th data-sort="document">Document</th>
62- <th data-sort="date">Date</th>
63- <th data-sort="status">Status</th>
64- <th data-sort="ipr">IPR</th>
65- <th data-sort="ad">AD/Shepherd</th>
66- </tr>
67- </thead>
68- <tbody>
69- {% for doc in section.docs %}
70- {% include "doc/search/search_result_row.html" with color_row_positions=True %}
71- {% endfor %}
72- </tbody>
73- </table>
74- {% endif %}
20+ {% endif %}
21+ {% for t in telechats %}
22+ <h2>
23+ IESG telechat {{ t.date }}
24+ <br>
25+ <small class="text-muted">{{ t.pages }} page{{ t.pages|pluralize }}</small>
26+ </h2>
27+ <div class="buttonlist">
28+ <a class="btn btn-primary" role="button" href="/iesg/agenda/">
29+ <span class="bi bi-list"></span>
30+ Full IESG agenda
31+ </a>
32+ <a class="btn btn-primary"
33+ role="button"
34+ href="/iesg/agenda/telechat-{{ t.date|date:'Y' }}-{{ t.date|date:'m' }}-{{ t.date|date:'d' }}-docs.tgz">
35+ <span class="bi bi-download"></span>
36+ Download documents
37+ </a>
38+ </div>
39+ {% for num, section in t.sections %}
40+ {% if "docs" not in section or section.docs %}
41+ {% if num|sectionlevel == 1 %}<h3 class="mt-3">{{ num }}. {{ section.title|safe }}</h3>{% endif %}
42+ {% if num|sectionlevel == 2 %}<h4 class="mt-3">{{ num }} {{ section.title|safe }}</h4>{% endif %}
43+ {% if num|sectionlevel == 3 %}<h5 class="mt-3">{{ num }} {{ section.title|safe }}</h5>{% endif %}
44+ {% endif %}
45+ {% if "docs" in section and section.docs %}
46+ <table class="table table-sm table-striped tablesorter">
47+ <thead>
48+ <tr>
49+ <th></th>
50+ <th data-sort="document">Document</th>
51+ <th data-sort="date">Date</th>
52+ <th data-sort="status">Status</th>
53+ <th data-sort="ipr">IPR</th>
54+ <th data-sort="ad">AD/Shepherd</th>
55+ </tr>
56+ </thead>
57+ <tbody>
58+ {% for doc in section.docs %}
59+ {% include "doc/search/search_result_row.html" with color_row_positions=True %}
60+ {% endfor %}
61+ </tbody>
62+ </table>
63+ {% endif %}
64+ {% endfor %}
65+ <hr>
7566 {% endfor %}
76- <hr>
77- {% endfor %}
78-
79- {% if user|has_role:"Secretariat" %}
80- {% bootstrap_button button_type="submit" content="Save reschedules" title="Save reschedule changes done with the drop-down boxes below" %}
67+ {% if user|has_role:"Secretariat" %}
68+ {% bootstrap_button button_type="submit" content="Save reschedules" title="Save reschedule changes done with the drop-down boxes below" %}
8169 </form>
8270 {% endif %}
83-
8471{% endblock content %}
85-
8672{% block js %}
8773 <script src="{% static "ietf/js/list.js" %}"></script>
88- {% endblock %}
74+ {% endblock %}
0 commit comments