* fix: Replace deprecated bootstrap CSS classes with 5.3 ones * Fix test * Remove debug print
43 lines
1.5 KiB
HTML
43 lines
1.5 KiB
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2021, All Rights Reserved #}
|
|
{% load origin static %}
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
|
|
{% endblock %}
|
|
{% block title %}Active administrative groups{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Active administrative groups</h1>
|
|
<table class="table table-sm table-striped tablesorter">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" data-sort="group">Group</th>
|
|
<th scope="col" data-sort="name">Name</th>
|
|
</tr>
|
|
</thead>
|
|
{% regroup adm by parent as grouped_groups %}
|
|
{% for grouptype in grouped_groups %}
|
|
<tbody>
|
|
<tr>
|
|
<th scope="col" colspan="2" class="table-info">
|
|
Active {% firstof grouptype.grouper.verbose_name grouptype.grouper.name 'Top-level Administration' %}
|
|
</th>
|
|
</tr>
|
|
</tbody>
|
|
<tbody>
|
|
{% for group in grouptype.list %}
|
|
<tr>
|
|
<td>
|
|
<a href="{% url "ietf.group.views.group_home" acronym=group.acronym %}">{{ group.acronym }}</a>
|
|
</td>
|
|
<td>{{ group.name }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
{% endfor %}
|
|
</table>
|
|
{% endblock %}
|
|
{% block js %}
|
|
<script src="{% static "ietf/js/list.js" %}"></script>
|
|
{% endblock %}
|