1+ {# bs5ok #}
12{% extends "group/group_base.html" %}
23{# Copyright The IETF Trust 2015, All Rights Reserved #}
34{% load origin %}
4-
5- {% block title %}Meetings{% if group %} for {{group.acronym}}{% endif %}{% endblock %}
6-
5+ {% block title %}
6+ Meetings
7+ {% if group %}for {{ group.acronym }}{% endif %}
8+ {% endblock %}
79{% block buttonlist %}
810 {{ block.super }}
9- < br >
10- < a class =" btn btn-primary " href ="{% url 'ietf.meeting.views.meeting_requests' %} "> Session requests</ a >
11+ < a class =" btn btn-primary "
12+ href ="{% url 'ietf.meeting.views.meeting_requests' %} "> Session requests</ a >
1113 {% if can_edit or can_always_edit %}
1214 < a class ="btn btn-primary " href ="{% url 'ietf.secr.sreq.views.main' %} "> Request a session</ a >
13- < a class ="btn btn-primary " href ="{% url 'ietf.meeting.views.interim_request' %}?group={{group.id}} "> Request an interim meeting</ a >
15+ < a class ="btn btn-primary "
16+ href ="{% url 'ietf.meeting.views.interim_request' %}?group={{ group.id }} ">
17+ Request an interim meeting
18+ </ a >
1419 {% endif %}
1520{% endblock buttonlist %}
16-
1721{% block group_content %}
1822 {% origin %}
19-
2023 {% if in_progress %}
21- < div class ="card " id ="inprogressmeets ">
22- < div class ="card-header ">
23- Meetings in progress
24- </ div >
25- < div class ="card-body ">
26- {% with sessions=in_progress show_request=True show_ical=True can_edit_materials=can_edit %}
24+ < h2 class ="mt-3 " id ="inprogressmeets "> Meetings in progress</ h2 >
25+ {% with sessions=in_progress show_request=True show_ical=True can_edit_materials=can_edit %}
26+ < table class ="table table-sm table-striped tablesorter ">
27+ < thead >
28+ < tr >
29+ < th data-sort ="meeting "> Meeting</ th >
30+ < th data-sort ="date "> Date</ th >
31+ < th > </ th >
32+ < th > Materials</ th >
33+ </ tr >
34+ </ thead >
35+ < tbody >
2736 {% include "group/meetings-row.html" %}
28- {% endwith %}
29- </ div >
30- </ div >
37+ </ tbody >
38+ </ table >
39+ {% endwith %}
3140 {% endif %}
32-
3341 {% if future %}
34- < div class ="card " id ="futuremeets ">
35- < div class ="card-header ">
36- Future Meetings
37- < a class ="regular float-end " title ="icalendar entry for all scheduled future {{group.acronym}} meetings " href ="{% url 'ietf.meeting.views.upcoming_ical' %}?show={{group.acronym}} "> < span class ="bi bi-calendar "> </ span > </ a >
38- </ div >
39- < div class ="card-body ">
42+ < h2 class ="mt-3 " id ="futuremeets ">
43+ Future Meetings
44+ < a title ="icalendar entry for all scheduled future {{ group.acronym }} meetings "
45+ href ="{% url 'ietf.meeting.views.upcoming_ical' %}?show={{ group.acronym }} ">
46+ < span class ="bi bi-calendar "> </ span >
47+ </ a >
48+ < table class ="table table-sm table-striped tablesorter ">
49+ < thead >
50+ < tr >
51+ < th data-sort ="meeting "> Meeting</ th >
52+ < th data-sort ="date "> Date</ th >
53+ < th > </ th >
54+ < th > Materials</ th >
55+ </ tr >
56+ </ thead >
4057 {% with sessions=future show_request=True show_ical=True can_edit_materials=can_edit %}
41- {% include "group/meetings-row.html" %}
58+ < tbody >
59+ {% include "group/meetings-row.html" %}
60+ </ tbody >
4261 {% endwith %}
43- </ div >
44- </ div >
45- {% endif %}
46-
47- {% if past or recent %}
48- < div class ="card " id ="pastmeets ">
49- < div class ="card-header ">
50- Past Meetings
51- </ div >
52- < div class ="card-body ">
53- {% if can_edit %}
62+ </ table >
63+ {% endif %}
64+ {% if past or recent %}
65+ < h2 class ="mt-3 " id ="pastmeets "> Past Meetings</ h2 >
66+ < table class ="table table-sm table-striped tablesorter ">
67+ < thead >
68+ < tr >
69+ < th data-sort ="meeting "> Meeting</ th >
70+ < th data-sort ="date "> Date</ th >
71+ < th > </ th >
72+ < th > Materials</ th >
73+ </ tr >
74+ </ thead >
75+ < tbody >
5476 {% with sessions=recent can_edit_materials=can_edit %}
5577 {% include "group/meetings-row.html" %}
5678 {% endwith %}
79+ {% with sessions=past can_edit_materials=False %}
80+ {% include "group/meetings-row.html" %}
81+ {% endwith %}
82+ < tbody >
83+ </ table >
5784 {% endif %}
58- {% with sessions=past can_edit_materials=False %}
59- {% include "group/meetings-row.html" %}
60- {% endwith %}
61- </ div >
62- </ div >
63- {% endif %}
64-
65- < p > This page shows meetings within the last four years. For earlier meetings, please see the proceedings.</ p >
66-
67- {% endblock %}
85+ < p >
86+ This page shows meetings within the last four years. For earlier meetings, please see the proceedings.
87+ </ p >
88+ {% endblock %}
0 commit comments