37 lines
1 KiB
HTML
37 lines
1 KiB
HTML
{% extends "base.html" %}
|
|
{# Copyright The IETF Trust 2015, All Rights Reserved #}
|
|
{% load origin static %}
|
|
|
|
{% block pagehead %}
|
|
<link rel="stylesheet" href="{% static "jquery.tablesorter/css/theme.bootstrap.min.css" %}">
|
|
{% endblock %}
|
|
|
|
{% block title %}Active groups{% endblock %}
|
|
|
|
{% block content %}
|
|
{% origin %}
|
|
<h1>Active groups</h1>
|
|
<table class="table table-condensed table-striped tablesorter">
|
|
<thead>
|
|
<tr>
|
|
<th class="col-md-2">Type</th>
|
|
<th class="col-md-1">Count</th>
|
|
<th class="col-md-9">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 "jquery.tablesorter/js/jquery.tablesorter.combined.min.js" %}"></script>
|
|
{% endblock %}
|