34 lines
1.2 KiB
HTML
34 lines
1.2 KiB
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin static %}
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="{% static "ietf/css/list.css" %}">
|
|
{% endblock %}
|
|
{% block title %}Active groups{% endblock %}
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Active groups</h1>
|
|
<table class="table table-sm table-striped tablesorter">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col" data-sort="type">Type</th>
|
|
<th scope="col" data-sort="count">Count</th>
|
|
<th scope="col" data-sort="description">Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for typename in grouptypes %}
|
|
<tr>
|
|
<td>
|
|
<a href="{% url "ietf.group.views.active_groups" group_type=typename.slug %}">{{ typename.name }}</a>
|
|
</td>
|
|
<td>{{ typename.group_count }}</td>
|
|
<td>{{ typename.desc }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|
|
{% block js %}
|
|
<script src="{% static "ietf/js/list.js" %}"></script>
|
|
{% endblock %} |