In bs5, `.visually-hidden` is the equivalent of bs3's `.sr-only`, i.e., it's still shown on screen readers, which is not what we want. Use `.d-none` instead, which is the equivalent of bs3's `.hidden`.
61 lines
2.5 KiB
HTML
61 lines
2.5 KiB
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin static person_filters %}
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
|
|
{% endblock %}
|
|
{% block title %}Active directorates{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Active Directorates</h1>
|
|
<table class="my-3 table table-sm table-striped tablesorter">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" data-sort="team">Team</th>
|
|
<th scope="col" data-sort="name">Name</th>
|
|
<th scope="col" data-sort="reviews">Reviews</th>
|
|
<th scope="col" data-sort="area">Area</th>
|
|
<th scope="col" data-sort="ad">AD</th>
|
|
<th scope="col" data-sort="secretaries">Secretaries</th>
|
|
<th scope="col" data-sort="chairs">Chairs</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for group in dirs %}
|
|
<tr>
|
|
<td>
|
|
<a href="{% url "ietf.group.views.group_home" acronym=group.acronym %}">{{ group.acronym }}</a>
|
|
</td>
|
|
<td>{{ group.name }}</td>
|
|
<td class="text-center">
|
|
{% if group.type_id == 'review' %}
|
|
<i class="bi bi-check-lg text-success"></i>
|
|
<span class="d-none">yes</span>
|
|
{% endif %}
|
|
</td>
|
|
<td>
|
|
<a href="{% url "ietf.group.views.group_home" acronym=group.parent.acronym %}">{{ group.parent.acronym }}</a>
|
|
</td>
|
|
<td>
|
|
{% for ad in group.ads %}
|
|
{% person_link ad.person %}{% if not forloop.last %},{% endif %}
|
|
{% endfor %}
|
|
</td>
|
|
<td>
|
|
{% for secretary in group.secretaries %}
|
|
{% person_link secretary.person %}{% if not forloop.last %},{% endif %}
|
|
{% endfor %}
|
|
</td>
|
|
<td>
|
|
{% for chair in group.chairs %}
|
|
{% person_link chair.person %}{% if not forloop.last %},{% endif %}
|
|
{% endfor %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|
|
{% block js %}
|
|
<script src="{% static "ietf/js/list.js" %}"></script>
|
|
{% endblock %} |